Skip to content

Commit 91ef992

Browse files
authored
chore(main): release 3.0.8 (#316)
🤖 I have created a release *beep* *boop* --- ## [3.0.8](v3.0.7...v3.0.8) (2023-08-01) ### Bug Fixes * **deps:** Update commitlint monorepo to v17.6.7 ([#314](#314)) ([cbc5423](cbc5423)) * **deps:** Update dependency @types/node to v18.17.1 ([#317](#317)) ([63240b3](63240b3)) * **deps:** Update dependency eslint to v8.46.0 ([#318](#318)) ([66b8193](66b8193)) * **deps:** Update dependency eslint-config-prettier to v8.9.0 ([#319](#319)) ([ae68599](ae68599)) * **deps:** Update dependency execa to v7.2.0 ([#320](#320)) ([6e8b242](6e8b242)) * **deps:** Update dependency semver to v7.5.4 ([#315](#315)) ([79bace3](79bace3)) * **deps:** Update dependency typescript to v5.1.6 ([#321](#321)) ([fd5e858](fd5e858)) * **deps:** Update typescript-eslint monorepo to v5.62.0 ([#322](#322)) ([4b9a3f4](4b9a3f4)) --- 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 4b9a3f4 commit 91ef992

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
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.8](https://github.com/cloudquery/setup-cloudquery/compare/v3.0.7...v3.0.8) (2023-08-01)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** Update commitlint monorepo to v17.6.7 ([#314](https://github.com/cloudquery/setup-cloudquery/issues/314)) ([cbc5423](https://github.com/cloudquery/setup-cloudquery/commit/cbc5423fb77e94ade177cdc7c92fceb953d454ab))
9+
* **deps:** Update dependency @types/node to v18.17.1 ([#317](https://github.com/cloudquery/setup-cloudquery/issues/317)) ([63240b3](https://github.com/cloudquery/setup-cloudquery/commit/63240b3b97452dede1e230caee3327df6b965251))
10+
* **deps:** Update dependency eslint to v8.46.0 ([#318](https://github.com/cloudquery/setup-cloudquery/issues/318)) ([66b8193](https://github.com/cloudquery/setup-cloudquery/commit/66b8193505d2084798e741aea32d9e481a81c5e9))
11+
* **deps:** Update dependency eslint-config-prettier to v8.9.0 ([#319](https://github.com/cloudquery/setup-cloudquery/issues/319)) ([ae68599](https://github.com/cloudquery/setup-cloudquery/commit/ae68599792db69e15859c8e64fad4a5fa2550b68))
12+
* **deps:** Update dependency execa to v7.2.0 ([#320](https://github.com/cloudquery/setup-cloudquery/issues/320)) ([6e8b242](https://github.com/cloudquery/setup-cloudquery/commit/6e8b242508d51418dc2e5e9393b7a893ee8e1684))
13+
* **deps:** Update dependency semver to v7.5.4 ([#315](https://github.com/cloudquery/setup-cloudquery/issues/315)) ([79bace3](https://github.com/cloudquery/setup-cloudquery/commit/79bace3993a13da4eb6d29f1c669ffcdb5320aab))
14+
* **deps:** Update dependency typescript to v5.1.6 ([#321](https://github.com/cloudquery/setup-cloudquery/issues/321)) ([fd5e858](https://github.com/cloudquery/setup-cloudquery/commit/fd5e85802e9abdcd707b94bdac1cc09d556bd6d2))
15+
* **deps:** Update typescript-eslint monorepo to v5.62.0 ([#322](https://github.com/cloudquery/setup-cloudquery/issues/322)) ([4b9a3f4](https://github.com/cloudquery/setup-cloudquery/commit/4b9a3f4538d4c4271ae4002e2302498521d62fb2))
16+
317
## [3.0.7](https://github.com/cloudquery/setup-cloudquery/compare/v3.0.6...v3.0.7) (2023-07-01)
418

519

dist/index.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7135,7 +7135,7 @@ class Range {
71357135
this.set = this.raw
71367136
.split('||')
71377137
// map the range to a 2d array of comparators
7138-
.map(r => this.parseRange(r))
7138+
.map(r => this.parseRange(r.trim()))
71397139
// throw out any comparator lists that are empty
71407140
// this generally means that it was not a valid range, which is allowed
71417141
// in loose mode, but will still throw if the WHOLE range is invalid.
@@ -8607,7 +8607,11 @@ module.exports = parseOptions
86078607
/***/ 9523:
86088608
/***/ ((module, exports, __nccwpck_require__) => {
86098609

8610-
const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH } = __nccwpck_require__(2293)
8610+
const {
8611+
MAX_SAFE_COMPONENT_LENGTH,
8612+
MAX_SAFE_BUILD_LENGTH,
8613+
MAX_LENGTH,
8614+
} = __nccwpck_require__(2293)
86118615
const debug = __nccwpck_require__(427)
86128616
exports = module.exports = {}
86138617

@@ -8628,7 +8632,7 @@ const LETTERDASHNUMBER = '[a-zA-Z0-9-]'
86288632
// all input should have extra whitespace removed.
86298633
const safeRegexReplacements = [
86308634
['\\s', 1],
8631-
['\\d', MAX_SAFE_COMPONENT_LENGTH],
8635+
['\\d', MAX_LENGTH],
86328636
[LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH],
86338637
]
86348638

@@ -13137,6 +13141,7 @@ const signalsByNumber=getSignalsByNumber();
1313713141
;// CONCATENATED MODULE: ./node_modules/execa/lib/error.js
1313813142

1313913143

13144+
1314013145
const getErrorPrefix = ({timedOut, timeout, errorCode, signal, signalDescription, exitCode, isCanceled}) => {
1314113146
if (timedOut) {
1314213147
return `timed out after ${timeout} milliseconds`;
@@ -13173,7 +13178,7 @@ const makeError = ({
1317313178
timedOut,
1317413179
isCanceled,
1317513180
killed,
13176-
parsed: {options: {timeout}},
13181+
parsed: {options: {timeout, cwd = external_node_process_namespaceObject.cwd()}},
1317713182
}) => {
1317813183
// `signal` and `exitCode` emitted on `spawned.on('exit')` event can be `null`.
1317913184
// We normalize them to `undefined`
@@ -13204,6 +13209,7 @@ const makeError = ({
1320413209
error.signalDescription = signalDescription;
1320513210
error.stdout = stdout;
1320613211
error.stderr = stderr;
13212+
error.cwd = cwd;
1320713213

1320813214
if (all !== undefined) {
1320913215
error.all = all;

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

0 commit comments

Comments
 (0)