Skip to content

Commit 675ef5e

Browse files
authored
chore(main): release 3.0.2 (#178)
🤖 I have created a release *beep* *boop* --- ## [3.0.2](v3.0.1...v3.0.2) (2023-01-01) ### Bug Fixes * **deps:** Update dependency @types/node to v18.11.18 ([#170](#170)) ([757660b](757660b)) * **deps:** Update dependency @types/pg to v8.6.6 ([#171](#171)) ([b5c8dde](b5c8dde)) * **deps:** Update dependency @vercel/ncc to v0.36.0 ([#174](#174)) ([f58d801](f58d801)) * **deps:** Update dependency chalk to v5.2.0 ([#175](#175)) ([a64fd49](a64fd49)) * **deps:** Update dependency eslint to v8.31.0 ([#176](#176)) ([5887e05](5887e05)) * **deps:** Update dependency prettier to v2.8.1 ([#172](#172)) ([5c2085f](5c2085f)) * **deps:** Update dependency typescript to v4.9.4 ([#173](#173)) ([f4dcc18](f4dcc18)) * **deps:** Update typescript-eslint monorepo to v5.47.1 ([#177](#177)) ([125bac3](125bac3)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
1 parent 125bac3 commit 675ef5e

File tree

4 files changed

+37
-11
lines changed

4 files changed

+37
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [3.0.2](https://github.com/cloudquery/setup-cloudquery/compare/v3.0.1...v3.0.2) (2023-01-01)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** Update dependency @types/node to v18.11.18 ([#170](https://github.com/cloudquery/setup-cloudquery/issues/170)) ([757660b](https://github.com/cloudquery/setup-cloudquery/commit/757660b1145eb0167fd5245261433a3b6b0f2eeb))
9+
* **deps:** Update dependency @types/pg to v8.6.6 ([#171](https://github.com/cloudquery/setup-cloudquery/issues/171)) ([b5c8dde](https://github.com/cloudquery/setup-cloudquery/commit/b5c8ddeb491e952b8fd35586cd4aa4039366f7fa))
10+
* **deps:** Update dependency @vercel/ncc to v0.36.0 ([#174](https://github.com/cloudquery/setup-cloudquery/issues/174)) ([f58d801](https://github.com/cloudquery/setup-cloudquery/commit/f58d8019c47f7d3c844fa8367eeb7275cf0f9180))
11+
* **deps:** Update dependency chalk to v5.2.0 ([#175](https://github.com/cloudquery/setup-cloudquery/issues/175)) ([a64fd49](https://github.com/cloudquery/setup-cloudquery/commit/a64fd49996292fee2ac4760b99499ef7ef799466))
12+
* **deps:** Update dependency eslint to v8.31.0 ([#176](https://github.com/cloudquery/setup-cloudquery/issues/176)) ([5887e05](https://github.com/cloudquery/setup-cloudquery/commit/5887e056dcd4c10fd99336324c4c49a480d2565f))
13+
* **deps:** Update dependency prettier to v2.8.1 ([#172](https://github.com/cloudquery/setup-cloudquery/issues/172)) ([5c2085f](https://github.com/cloudquery/setup-cloudquery/commit/5c2085ff378aefcb42c7f2dbe5da67d1888daf6e))
14+
* **deps:** Update dependency typescript to v4.9.4 ([#173](https://github.com/cloudquery/setup-cloudquery/issues/173)) ([f4dcc18](https://github.com/cloudquery/setup-cloudquery/commit/f4dcc18d9571239bef59f319d2b0ebef9759ecbb))
15+
* **deps:** Update typescript-eslint monorepo to v5.47.1 ([#177](https://github.com/cloudquery/setup-cloudquery/issues/177)) ([125bac3](https://github.com/cloudquery/setup-cloudquery/commit/125bac35752d0ba819766174a46de0dd53cd8852))
16+
317
## [3.0.1](https://github.com/cloudquery/setup-cloudquery/compare/v3.0.0...v3.0.1) (2022-12-01)
418

519

dist/index.js

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11991,7 +11991,7 @@ const external_node_tty_namespaceObject = __WEBPACK_EXTERNAL_createRequire(impor
1199111991

1199211992

1199311993
// From: https://github.com/sindresorhus/has-flag/blob/main/index.js
11994-
function hasFlag(flag, argv = external_node_process_namespaceObject.argv) {
11994+
function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args : external_node_process_namespaceObject.argv) {
1199511995
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
1199611996
const position = argv.indexOf(prefix + flag);
1199711997
const terminatorPosition = argv.indexOf('--');
@@ -12068,6 +12068,12 @@ function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
1206812068
}
1206912069
}
1207012070

12071+
// Check for Azure DevOps pipelines.
12072+
// Has to be above the `!streamIsTTY` check.
12073+
if ('TF_BUILD' in env && 'AGENT_NAME' in env) {
12074+
return 1;
12075+
}
12076+
1207112077
if (haveStream && !streamIsTTY && forceColor === undefined) {
1207212078
return 0;
1207312079
}
@@ -12093,7 +12099,11 @@ function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
1209312099
}
1209412100

1209512101
if ('CI' in env) {
12096-
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
12102+
if ('GITHUB_ACTIONS' in env) {
12103+
return 3;
12104+
}
12105+
12106+
if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') {
1209712107
return 1;
1209812108
}
1209912109

@@ -12104,23 +12114,25 @@ function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
1210412114
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
1210512115
}
1210612116

12107-
// Check for Azure DevOps pipelines
12108-
if ('TF_BUILD' in env && 'AGENT_NAME' in env) {
12109-
return 1;
12117+
if (env.COLORTERM === 'truecolor') {
12118+
return 3;
1211012119
}
1211112120

12112-
if (env.COLORTERM === 'truecolor') {
12121+
if (env.TERM === 'xterm-kitty') {
1211312122
return 3;
1211412123
}
1211512124

1211612125
if ('TERM_PROGRAM' in env) {
1211712126
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
1211812127

1211912128
switch (env.TERM_PROGRAM) {
12120-
case 'iTerm.app':
12129+
case 'iTerm.app': {
1212112130
return version >= 3 ? 3 : 2;
12122-
case 'Apple_Terminal':
12131+
}
12132+
12133+
case 'Apple_Terminal': {
1212312134
return 2;
12135+
}
1212412136
// No default
1212512137
}
1212612138
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudquery/setup-cloudquery",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Setup CloudQuery CLI in a GitHub action environment",
55
"main": "dist/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)