Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[maven,typescript] (#332, #462, #463) Update dependencies to latest package versions #582

Open
wants to merge 36 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
fdc0d47
chore: Updated dependencies to latest versions.
pboychev-bcom Nov 7, 2024
d06191f
chore: Updated dependencies to latest versions.
pboychev-bcom Nov 7, 2024
494dc02
Merging isolated changes to feature branch. (#2)
pboychev-bcom Nov 11, 2024
8ba5b72
Updated dependencies to latest package versions for "typescript/npmco…
pboychev-bcom Nov 11, 2024
c4ebbef
Pboychev/463 update dependencies to latest package versions (#4)
pboychev-bcom Nov 11, 2024
daf1ae5
update dependancies for typescript/vropkg
deyan-r Nov 12, 2024
b07d980
chore: Updating dependencies for "typescript/npmconv" component.
pboychev-bcom Nov 12, 2024
d13b372
chore: Updated the minimum required versions for Node.js and npm for …
pboychev-bcom Nov 12, 2024
3fb1986
Merging polyglot component changes to the feature branch
pboychev-bcom Nov 14, 2024
04dba04
Update dependencies to latest package versions for "typescript/polygl…
pboychev-bcom Nov 18, 2024
7df4004
chore: Updated dependencies to latest available for component "typesc…
pboychev-bcom Nov 18, 2024
130730c
updated vropkg dependencies
deyan-r Nov 20, 2024
a4ca895
Merge branch 'feature/463-update-dependencies-to-latest-package-versi…
deyan-r Nov 20, 2024
19cf11f
Merge branch 'vmware:main' into feature/463-update-dependencies-to-la…
deyan-r Nov 21, 2024
665f7c2
update xmlbuilder and align code
deyan-r Nov 25, 2024
366008a
updated fs-extra and unzipper and code fixes
deyan-r Nov 25, 2024
4696928
style: Gulpfile is compliant with TS requirements in the vrotest comp…
pboychev-bcom Nov 18, 2024
d0de764
chore(vrotsc): Updated dependencies.
pboychev-bcom Nov 26, 2024
2b07fe8
chore(vrotsc): Updated dependencies.
pboychev-bcom Nov 26, 2024
4af1a0a
chore(vrotsc): Updated dependencies.
pboychev-bcom Nov 26, 2024
51558ea
chore(vrotsc): Removed "fs-extra" dependency.
pboychev-bcom Nov 28, 2024
c3e5ce5
chore(typescript/*): Updated node types to latest available.
pboychev-bcom Nov 28, 2024
41d3a60
updated dependencies for typescript/npmconv
deyan-r Nov 29, 2024
a967248
changes in vrotsc dependencies
deyan-r Dec 2, 2024
e925cbe
chore(vrotest,vropkg,polyglotpkg,npmconv): Updating dependencies.
pboychev-bcom Dec 4, 2024
35c0863
Merge branch 'main' into feature/463-update-dependencies-to-latest-pa…
pboychev-bcom Dec 4, 2024
98bfe1f
Merge branch 'main' into feature/463-update-dependencies-to-latest-pa…
pboychev-bcom Dec 4, 2024
3ecbd55
update minimatch for vrotsc
deyan-r Dec 5, 2024
5b79a31
synch dependencies of all components
deyan-r Dec 6, 2024
246f789
update typescript version for vrotsc
deyan-r Dec 6, 2024
5c5d57e
update dependency versions for vrotsc
deyan-r Dec 9, 2024
16c50e0
Merge branch 'main' of https://github.com/pboychev-bcom/build-tools-f…
deyan-r Dec 10, 2024
1d4ce7c
fixed issue in vrotest
deyan-r Dec 10, 2024
0dadbb8
fix using path only
deyan-r Dec 19, 2024
d5b710a
Merge branch 'vmware:main' into feature/463-update-dependencies-to-la…
deyan-r Dec 19, 2024
d67edce
update runtime for polyglot vro archetype sample project
deyan-r Dec 20, 2024
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
27 changes: 13 additions & 14 deletions docs/archive/doc/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "iac-documentation",
"version": "1.0.0-SNAPSHOT",
"description": "Build Tools for VMware Aria documentation bundle",
"dependencies": {
"pack": "^2.1.0",
"showdown": ">= 1.8.6"
},
"scripts": {
"install": "node html-generator.js && cp -r markdown/assets html",
"clean": "rm -rf html"
},
"files": [
"html/"
]
"name": "iac-documentation",
"version": "1.0.0-SNAPSHOT",
"description": "Build Tools for VMware Aria documentation bundle",
"dependencies": {
"showdown": ">= 2.1.0"
},
"scripts": {
"install": "node html-generator.js && cp -r markdown/assets html",
"clean": "rm -rf html"
},
"files": [
"html/"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function delay(func: () => void, ms: number = 1) {
setTimeout(() => {
try {
func();
resolve();
resolve(undefined);
} catch (e) {
reject(e.message);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"platform": {
#if ( $type == "vro" )
Michaelpalacce marked this conversation as resolved.
Show resolved Hide resolved
"runtime": "node:20",
#else
"runtime": "nodejs",
#end
"action": "auto",
"tags": [],
"entrypoint": "out/handler.handler"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"platform": {
#if ( $type == "vro" )
"runtime": "powercli:13-powershell-7.4",
#else
"runtime": "powershell",
#end
"action": "auto",
"tags": [],
"entrypoint": "out/handler.handler"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"platform": {
#if ( $type == "vro" )
"runtime": "python:3.10",
#else
"runtime": "python",
#end
"action": "auto",
"tags": [],
"entrypoint": "handler.handler",
Expand Down
7 changes: 2 additions & 5 deletions maven/plugins/polyglot/src/it/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,9 @@
Build Tools for VMware Aria
Copyright 2023 VMware, Inc.

This product is licensed to you under the BSD-2 license (the "License"). You may not use this
product except in compliance with the BSD-2 License.
This product is licensed to you under the BSD-2 license (the "License"). You may not use this product except in compliance with the BSD-2 License.

This product may include a number of subcomponents with separate copyright notices and license
terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's
license, as noted in the LICENSE file.
This product may include a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's license, as noted in the LICENSE file.
#L%
-->

Expand Down
7 changes: 2 additions & 5 deletions maven/plugins/typescript/src/it/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,9 @@
Build Tools for VMware Aria
Copyright 2023 VMware, Inc.

This product is licensed to you under the BSD-2 license (the "License"). You may not use this
product except in compliance with the BSD-2 License.
This product is licensed to you under the BSD-2 license (the "License"). You may not use this product except in compliance with the BSD-2 License.

This product may include a number of subcomponents with separate copyright notices and license
terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's
license, as noted in the LICENSE file.
This product may include a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's license, as noted in the LICENSE file.
#L%
-->

Expand Down
Loading
Loading