Skip to content

Commit cf36500

Browse files
chore(deps): Bump inversify from 6.2.2 to 7.1.0 (#142)
* chore(deps): Bump inversify from 6.2.2 to 7.1.0 Bumps [inversify](https://github.com/inversify/InversifyJS) from 6.2.2 to 7.1.0. - [Release notes](https://github.com/inversify/InversifyJS/releases) - [Changelog](https://github.com/inversify/InversifyJS/blob/master/CHANGELOG.md) - [Commits](inversify/InversifyJS@v6.2.2...v7.1.0) --- updated-dependencies: - dependency-name: inversify dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * fix errors after upgrading inversify to 7.1.0 Signed-off-by: Valeriy Svydenko <[email protected]> * fix: exlude transitive deps from lixense checker Signed-off-by: Valeriy Svydenko <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Valeriy Svydenko <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Valeriy Svydenko <[email protected]>
1 parent 07628e6 commit cf36500

File tree

11 files changed

+78
-55
lines changed

11 files changed

+78
-55
lines changed

.deps/EXCLUDED/prod.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,9 @@ This file lists dependencies that do not need CQs or auto-detection does not wor
22

33
| Packages | Resolved CQs |
44
| --- | --- |
5-
| `@devfile/[email protected]` | N/A |
5+
| `@devfile/[email protected]` | N/A |
6+
| `@inversifyjs/[email protected]` | transitive dependency |
7+
| `@inversifyjs/[email protected]` | transitive dependency |
8+
| `@inversifyjs/[email protected]` | transitive dependency |
9+
| `@inversifyjs/[email protected]` | transitive dependency |
10+
| `@inversifyjs/[email protected]` | transitive dependency |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"@devfile/api": "2.3.0-1741179368",
4444
"axios": "^1.8.3",
4545
"fs-extra": "^11.2.0",
46-
"inversify": "^6.0.2",
46+
"inversify": "^7.1.0",
4747
"lodash": "^4.17.21",
4848
"js-yaml": "^4.0.0",
4949
"jsonc-parser": "^3.0.0",
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { BitbucketServerResolver } from './bitbucket-server-resolver';
1313
import { TYPES } from '../types';
1414

1515
const { Resolver } = TYPES;
1616

17-
const bitbucketServerModule = new ContainerModule((bind: interfaces.Bind) => {
18-
bind(Resolver).to(BitbucketServerResolver).inSingletonScope();
17+
const bitbucketServerModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
18+
options.bind(Resolver).to(BitbucketServerResolver).inSingletonScope();
1919
});
2020

2121
export { bitbucketServerModule };

src/bitbucket/bitbucket-module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { BitbucketResolver } from './bitbucket-resolver';
1313
import { TYPES } from '../types';
1414

1515
const { Resolver } = TYPES;
1616

17-
const bitbucketModule = new ContainerModule((bind: interfaces.Bind) => {
18-
bind(Resolver).to(BitbucketResolver).inSingletonScope();
17+
const bitbucketModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
18+
options.bind(Resolver).to(BitbucketResolver).inSingletonScope();
1919
});
2020

2121
export { bitbucketModule };
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { DevfileSchemaValidator } from './devfile-schema-validator';
1313

14-
const devfileSchemaModule = new ContainerModule((bind: interfaces.Bind) => {
15-
bind(DevfileSchemaValidator).toSelf().inSingletonScope();
14+
const devfileSchemaModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
15+
options.bind(DevfileSchemaValidator).toSelf().inSingletonScope();
1616
});
1717

1818
export { devfileSchemaModule };

src/devfile/devfile-module.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { DevContainerComponentFinder } from './dev-container-component-finder';
1313
import { DevContainerComponentInserter } from './dev-container-component-inserter';
1414

15-
const devfileModule = new ContainerModule((bind: interfaces.Bind) => {
16-
bind(DevContainerComponentFinder).toSelf().inSingletonScope();
17-
bind(DevContainerComponentInserter).toSelf().inSingletonScope();
15+
const devfileModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
16+
options.bind(DevContainerComponentFinder).toSelf().inSingletonScope();
17+
options.bind(DevContainerComponentInserter).toSelf().inSingletonScope();
1818
});
1919

2020
export { devfileModule };

src/editor/editor-module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { EditorResolver } from './editor-resolver';
1313

14-
const editorModule = new ContainerModule((bind: interfaces.Bind) => {
15-
bind(EditorResolver).toSelf().inSingletonScope();
14+
const editorModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
15+
options.bind(EditorResolver).toSelf().inSingletonScope();
1616
});
1717

1818
export { editorModule };

src/fetch/fetch-module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { UrlFetcher } from './url-fetcher';
1313

14-
const fetchModule = new ContainerModule((bind: interfaces.Bind) => {
15-
bind(UrlFetcher).toSelf().inSingletonScope();
14+
const fetchModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
15+
options.bind(UrlFetcher).toSelf().inSingletonScope();
1616
});
1717

1818
export { fetchModule };

src/github/github-module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { GithubResolver } from './github-resolver';
1313
import { TYPES } from '../types';
1414

1515
const { Resolver } = TYPES;
1616

17-
const githubModule = new ContainerModule((bind: interfaces.Bind) => {
18-
bind(Resolver).to(GithubResolver).inSingletonScope();
17+
const githubModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
18+
options.bind(Resolver).to(GithubResolver).inSingletonScope();
1919
});
2020

2121
export { githubModule };

src/resolve/resolve-module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/**********************************************************************
2-
* Copyright (c) 2022-2024
2+
* Copyright (c) 2022-2025
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
66
* which is available at https://www.eclipse.org/legal/epl-2.0/
77
*
88
* SPDX-License-Identifier: EPL-2.0
99
***********************************************************************/
10-
import { ContainerModule, interfaces } from 'inversify';
10+
import { ContainerModule, ContainerModuleLoadOptions } from 'inversify';
1111

1212
import { GitUrlResolver } from './git-url-resolver';
1313

14-
const resolveModule = new ContainerModule((bind: interfaces.Bind) => {
15-
bind(GitUrlResolver).toSelf().inSingletonScope();
14+
const resolveModule = new ContainerModule((options: ContainerModuleLoadOptions) => {
15+
options.bind(GitUrlResolver).toSelf().inSingletonScope();
1616
});
1717

1818
export { resolveModule };

0 commit comments

Comments
 (0)