Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/sour-months-pull.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@orbi-ts/eslint-plugin-orbits': patch
'@orbi-ts/fuel': patch
'@orbi-ts/cli': patch
---

fix/security-updates
8 changes: 4 additions & 4 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"ansi-styles": "^6.2.3",
"blessed": "^0.1.81",
"colors": "^1.4.0",
"commander": "^14.0.2",
"commander": "^14.0.3",
"copy-paste": "^2.2.0",
"find-up-simple": "^1.0.1",
"mongoose": "^8.22.0",
"string-width": "^8.1.0",
"strip-ansi": "^7.1.2",
"mongoose": "^8.23.0",
"string-width": "^8.2.0",
"strip-ansi": "^7.2.0",
"winston": "catalog:"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion core/actions/src/models/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export interface ActionSchemaInterface<
TArgument = any,
TBag = any,
TResult = any,
> extends mongoose.Document {
>
extends mongoose.Document {
state: ActionState;
stateUpdatedAt: Date;
argument: TArgument;
Expand Down
18 changes: 9 additions & 9 deletions helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"@tsconfig/node16": "catalog:",
"@types/jasmine": "catalog:",
"@types/node": "catalog:",
"cdk8s-plus-32": "^2.5.23",
"constructs": "^10.4.5",
"cdk8s-plus-32": "^2.5.34",
"constructs": "^10.5.1",
"jasmine": "catalog:",
"prettier": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
Expand All @@ -39,10 +39,10 @@
"typescript": "catalog:"
},
"dependencies": {
"@aws-cdk/toolkit-lib": "^1.14.1",
"@aws-sdk/client-cloudformation": "^3.975.0",
"@aws-sdk/client-ecr": "^3.975.0",
"@aws-sdk/client-sso-oidc": "^3.975.0",
"@aws-cdk/toolkit-lib": "^1.16.1",
"@aws-sdk/client-cloudformation": "^3.1000.0",
"@aws-sdk/client-ecr": "^3.1000.0",
"@aws-sdk/client-sso-oidc": "^3.1000.0",
"@gitbeaker/node": "^35.8.1",
"@kubernetes/client-node": "^1.4.0",
"@octokit/auth-token": "^3.0.4",
Expand All @@ -51,9 +51,9 @@
"@orbi-ts/services": "workspace:^",
"@types/dockerode": "^3.3.47",
"@types/express": "^4.17.25",
"aws-cdk": "^2.1103.0",
"aws-cdk-lib": "^2.236.0",
"cdk8s": "^2.70.45",
"aws-cdk": "^2.1108.0",
"aws-cdk-lib": "^2.241.0",
"cdk8s": "^2.70.49",
"dockerode": "^4.0.9",
"express": "^4.22.1",
"mongoose": "catalog:",
Expand Down
4 changes: 2 additions & 2 deletions helpers/src/git-actions/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ export class GithubApi implements GitProvider {
.then((infos) =>
Boolean(
infos.data.length &&
// make sure data includes the given ref
infos.data.find((data) => data.head.ref === refId)
// make sure data includes the given ref
infos.data.find((data) => data.head.ref === refId)
)
);
}
Expand Down
21 changes: 20 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,26 @@
"@eslint/plugin-kit@<0.3.4": ">=0.3.4",
"vite@>=7.1.0 <=7.1.10": ">=7.1.11",
"read-yaml-file": "^2.1.0",
"glob@>=10.2.0 <11.1.0": ">=11.1.0"
"glob@>=10.2.0 <11.1.0": ">=11.1.0",
"cli@<1.0.0": ">=1.0.0",
"diff@>=6.0.0 <8.0.3": ">=8.0.3",
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1",
"fast-xml-parser@>=5.0.9 <=5.3.3": ">=5.3.4",
"qs@>=6.7.0 <=6.14.1": ">=6.14.2",
"minimatch@<3.1.3": ">=3.1.3",
"minimatch@>=5.0.0 <5.1.7": ">=5.1.7",
"minimatch@>=9.0.0 <9.0.6": ">=9.0.6",
"minimatch@>=10.0.0 <10.2.1": ">=10.2.1",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"minimatch@>=5.0.0 <5.1.8": ">=5.1.8",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7",
"minimatch@>=10.0.0 <10.2.3": ">=10.2.3",
"minimatch@<3.1.4": ">=3.1.4",
"fast-xml-parser@>=5.0.0 <5.3.5": ">=5.3.5",
"fast-xml-parser@>=5.0.0 <5.3.6": ">=5.3.6",
"fast-xml-parser@>=5.0.0 <5.3.8": ">=5.3.8",
"ajv@<6.14.0": ">=6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0"
}
},
"dependencies": {
Expand Down
16 changes: 8 additions & 8 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@
}
},
"dependencies": {
"@typescript-eslint/type-utils": "^8.42.0",
"@typescript-eslint/type-utils": "^8.56.1",
"@typescript-eslint/utils": "8.18.0",
"ts-api-utils": "^2.1.0"
"ts-api-utils": "^2.4.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@eslint/js": "^9.39.3",
"@tsconfig/node22": "catalog:",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"@types/node": "^22.19.13",
"@typescript-eslint/rule-tester": "8.18.0",
"eslint": "^9.16.0",
"eslint-doc-generator": "^2.0.0",
"eslint-plugin-eslint-plugin": "^6.3.2",
"tsx": "^4.19.3",
"eslint": "^9.39.3",
"eslint-doc-generator": "^2.4.0",
"eslint-plugin-eslint-plugin": "^6.5.0",
"tsx": "^4.21.0",
"typescript": "catalog:",
"typescript-eslint": "8.18.0",
"vitest": "^3.2.4"
Expand Down
Loading