Skip to content

Commit d69de88

Browse files
authored
chore(main): release 3.0.4 (#229)
🤖 I have created a release *beep* *boop* --- ## [3.0.4](v3.0.3...v3.0.4) (2023-03-14) ### Bug Fixes * **deps:** Update commitlint monorepo to v17.4.4 ([#225](#225)) ([4cb6668](4cb6668)) * **deps:** Update dependency @types/node to v18.14.2 ([#227](#227)) ([1b9e0c1](1b9e0c1)) * **deps:** Update dependency eslint to v8.35.0 ([#228](#228)) ([c1bf50d](c1bf50d)) * **deps:** Update dependency execa to v7 ([#231](#231)) ([3bb046d](3bb046d)) * **deps:** Update dependency prettier to v2.8.4 ([#226](#226)) ([641c98d](641c98d)) * **deps:** Update typescript-eslint monorepo to v5.54.0 ([#230](#230)) ([76bd1b3](76bd1b3)) --- 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 d41191b commit d69de88

File tree

4 files changed

+34
-16
lines changed

4 files changed

+34
-16
lines changed

CHANGELOG.md

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

3+
## [3.0.4](https://github.com/cloudquery/setup-cloudquery/compare/v3.0.3...v3.0.4) (2023-03-14)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** Update commitlint monorepo to v17.4.4 ([#225](https://github.com/cloudquery/setup-cloudquery/issues/225)) ([4cb6668](https://github.com/cloudquery/setup-cloudquery/commit/4cb66685986a095451064b9dba7a81d36098814d))
9+
* **deps:** Update dependency @types/node to v18.14.2 ([#227](https://github.com/cloudquery/setup-cloudquery/issues/227)) ([1b9e0c1](https://github.com/cloudquery/setup-cloudquery/commit/1b9e0c146c13945189d4c5ae93687418001f898b))
10+
* **deps:** Update dependency eslint to v8.35.0 ([#228](https://github.com/cloudquery/setup-cloudquery/issues/228)) ([c1bf50d](https://github.com/cloudquery/setup-cloudquery/commit/c1bf50d72188c0b9468acfd59ad1013714d71eea))
11+
* **deps:** Update dependency execa to v7 ([#231](https://github.com/cloudquery/setup-cloudquery/issues/231)) ([3bb046d](https://github.com/cloudquery/setup-cloudquery/commit/3bb046d23319e85ed8330ad057e83b8a6545dafc))
12+
* **deps:** Update dependency prettier to v2.8.4 ([#226](https://github.com/cloudquery/setup-cloudquery/issues/226)) ([641c98d](https://github.com/cloudquery/setup-cloudquery/commit/641c98d14211518d1bc9d121f2b8fc8f34cb0f87))
13+
* **deps:** Update typescript-eslint monorepo to v5.54.0 ([#230](https://github.com/cloudquery/setup-cloudquery/issues/230)) ([76bd1b3](https://github.com/cloudquery/setup-cloudquery/commit/76bd1b301389f95715c5c6cfea0d19117b828772))
14+
315
## [3.0.3](https://github.com/cloudquery/setup-cloudquery/compare/v3.0.2...v3.0.3) (2023-02-01)
416

517

dist/index.js

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12935,7 +12935,7 @@ standard})
1293512935
{
1293612936
const{
1293712937
signals:{[name]:constantSignal}}=
12938-
external_os_.constants;
12938+
external_node_os_namespaceObject.constants;
1293912939
const supported=constantSignal!==undefined;
1294012940
const number=supported?constantSignal:defaultNumber;
1294112941
return{name,number,description,supported,action,forced,standard};
@@ -12951,16 +12951,21 @@ return{name,number,description,supported,action,forced,standard};
1295112951

1295212952
const getSignalsByName=function(){
1295312953
const signals=getSignals();
12954-
return signals.reduce(getSignalByName,{});
12954+
return Object.fromEntries(signals.map(getSignalByName));
1295512955
};
1295612956

12957-
const getSignalByName=function(
12958-
signalByNameMemo,
12959-
{name,number,description,supported,action,forced,standard})
12957+
const getSignalByName=function({
12958+
name,
12959+
number,
12960+
description,
12961+
supported,
12962+
action,
12963+
forced,
12964+
standard})
1296012965
{
12961-
return{
12962-
...signalByNameMemo,
12963-
[name]:{name,number,description,supported,action,forced,standard}};
12966+
return[
12967+
name,
12968+
{name,number,description,supported,action,forced,standard}];
1296412969

1296512970
};
1296612971

@@ -13002,7 +13007,7 @@ standard}};
1300213007

1300313008

1300413009
const findSignalByNumber=function(number,signals){
13005-
const signal=signals.find(({name})=>external_os_.constants.signals[name]===number);
13010+
const signal=signals.find(({name})=>external_node_os_namespaceObject.constants.signals[name]===number);
1300613011

1300713012
if(signal!==undefined){
1300813013
return signal;
@@ -13299,9 +13304,7 @@ var merge_stream = __nccwpck_require__(2621);
1329913304

1330013305
// `input` option
1330113306
const handleInput = (spawned, input) => {
13302-
// Checking for stdin is workaround for https://github.com/nodejs/node/issues/26852
13303-
// @todo remove `|| spawned.stdin === undefined` once we drop support for Node.js <=12.2.0
13304-
if (input === undefined || spawned.stdin === undefined) {
13307+
if (input === undefined) {
1330513308
return;
1330613309
}
1330713310

@@ -13333,7 +13336,8 @@ const makeAllStream = (spawned, {all}) => {
1333313336

1333413337
// On failure, `result.stdout|stderr|all` should contain the currently buffered stream
1333513338
const getBufferedData = async (stream, streamPromise) => {
13336-
if (!stream) {
13339+
// When `buffer` is `false`, `streamPromise` is `undefined` and there is no buffered data to retrieve
13340+
if (!stream || streamPromise === undefined) {
1333713341
return;
1333813342
}
1333913343

@@ -13383,7 +13387,9 @@ const stream_validateInputSync = ({input}) => {
1338313387
};
1338413388

1338513389
;// CONCATENATED MODULE: ./node_modules/execa/lib/promise.js
13390+
// eslint-disable-next-line unicorn/prefer-top-level-await
1338613391
const nativePromisePrototype = (async () => {})().constructor.prototype;
13392+
1338713393
const descriptors = ['then', 'catch', 'finally'].map(property => [
1338813394
property,
1338913395
Reflect.getOwnPropertyDescriptor(nativePromisePrototype, property),

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.3",
3+
"version": "3.0.4",
44
"description": "Setup CloudQuery CLI in a GitHub action environment",
55
"main": "dist/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)