Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
)

* fix: upgrade dotenv from 8.2.0 to 8.6.0 (#5037)

Snyk has created this PR to upgrade dotenv from 8.2.0 to 8.6.0.

See this package in yarn:
dotenv

See this project in Snyk:
https://app.snyk.io/org/pipecd/project/f41c5767-b506-4f59-beb9-ef662258eb9a?utm_source=github&utm_medium=referral&page=upgrade-pr

Signed-off-by: t-kikuc <[email protected]>
Co-authored-by: snyk-bot <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

* fix: upgrade @types/yup from 0.29.11 to 0.29.14 (#5038)

Snyk has created this PR to upgrade @types/yup from 0.29.11 to 0.29.14.

See this package in yarn:
@types/yup

See this project in Snyk:
https://app.snyk.io/org/pipecd/project/f41c5767-b506-4f59-beb9-ef662258eb9a?utm_source=github&utm_medium=referral&page=upgrade-pr

Signed-off-by: t-kikuc <[email protected]>
Co-authored-by: snyk-bot <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

* fix: upgrade react-draggable from 4.4.3 to 4.4.6 (#5039)

Snyk has created this PR to upgrade react-draggable from 4.4.3 to 4.4.6.

See this package in yarn:
react-draggable

See this project in Snyk:
https://app.snyk.io/org/pipecd/project/f41c5767-b506-4f59-beb9-ef662258eb9a?utm_source=github&utm_medium=referral&page=upgrade-pr

Signed-off-by: t-kikuc <[email protected]>
Co-authored-by: snyk-bot <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

* fix: upgrade clsx from 1.1.1 to 1.2.1 (#5040)

Snyk has created this PR to upgrade clsx from 1.1.1 to 1.2.1.

See this package in yarn:
clsx

See this project in Snyk:
https://app.snyk.io/org/pipecd/project/f41c5767-b506-4f59-beb9-ef662258eb9a?utm_source=github&utm_medium=referral&page=upgrade-pr

Signed-off-by: t-kikuc <[email protected]>
Co-authored-by: snyk-bot <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

* add EphemeralStorage to RegisterTaskDefinition() (#5063)

Signed-off-by: t-kikuc <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

* Remove platform provider migration ops task (#5065)

Signed-off-by: khanhtc1202 <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

* Remove unused dependencies: @date-io/dayjs, @material-ui/pickers (#5070)

* yarn remove @date-io/dayjs

Signed-off-by: t-kikuc <[email protected]>

* yarn remove @material-ui/pickers

Signed-off-by: t-kikuc <[email protected]>

---------

Signed-off-by: t-kikuc <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

* Fix type for grpcWeb.Error to grpcweb.RpcError (#5072)

Signed-off-by: Yoshiki Fujikane <[email protected]>

* Release/init v0.48.3 (#5090)

Signed-off-by: t-kikuc <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>

---------

Signed-off-by: t-kikuc <[email protected]>
Signed-off-by: Yoshiki Fujikane <[email protected]>
Signed-off-by: khanhtc1202 <[email protected]>
Co-authored-by: Khanh Tran <[email protected]>
Co-authored-by: snyk-bot <[email protected]>
Co-authored-by: Tetsuya Kikuchi <[email protected]>
  • Loading branch information
4 people authored Jul 29, 2024
1 parent 6875c92 commit 57805c1
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 232 deletions.
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tag: v0.48.2
tag: v0.48.3

releaseNoteGenerator:
showCommitter: false
Expand Down
10 changes: 0 additions & 10 deletions cmd/pipecd/ops.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import (
"github.com/pipe-cd/pipecd/pkg/app/ops/orphancommandcleaner"
"github.com/pipe-cd/pipecd/pkg/app/ops/pipedstatsbuilder"
"github.com/pipe-cd/pipecd/pkg/app/ops/planpreviewoutputcleaner"
"github.com/pipe-cd/pipecd/pkg/app/ops/platformprovidermigration"
"github.com/pipe-cd/pipecd/pkg/app/ops/staledpipedstatcleaner"
"github.com/pipe-cd/pipecd/pkg/cache/rediscache"
"github.com/pipe-cd/pipecd/pkg/cli"
Expand Down Expand Up @@ -148,15 +147,6 @@ func (s *ops) run(ctx context.Context, input cli.Input) error {
}
}()

// Start running CloudProvider to PlatformProvider migration task.
// TODO: Remove this task after a few releases.
{
runner := platformprovidermigration.NewRunner(ds, input.Logger)
group.Go(func() error {
return runner.Migrate(ctx)
})
}

statCache := rediscache.NewHashCache(rd, defaultPipedStatHashKey)
// Start running staled piped stat cleaner.
{
Expand Down
138 changes: 0 additions & 138 deletions pkg/app/ops/platformprovidermigration/runner.go

This file was deleted.

1 change: 1 addition & 0 deletions pkg/app/piped/platformprovider/ecs/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ func (c *client) RegisterTaskDefinition(ctx context.Context, taskDefinition type
NetworkMode: taskDefinition.NetworkMode,
Volumes: taskDefinition.Volumes,
RuntimePlatform: taskDefinition.RuntimePlatform,
EphemeralStorage: taskDefinition.EphemeralStorage,
// Requires defined at task level in case Fargate is used.
Cpu: taskDefinition.Cpu,
Memory: taskDefinition.Memory,
Expand Down
10 changes: 4 additions & 6 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,18 @@
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@date-io/dayjs": "^1.3.13",
"@loadable/component": "^5.16.4",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@primer/octicons-react": "^14.2.1",
"@reduxjs/toolkit": "^1.9.7",
"@types/dagre": "^0.7.52",
"@types/yup": "^0.29.11",
"clsx": "^1.1.1",
"@types/yup": "^0.29.14",
"clsx": "^1.2.1",
"dagre": "^0.8.5",
"dayjs": "^1.8.28",
"dotenv": "^8.2.0",
"dotenv": "^8.6.0",
"echarts": "^5.5.1",
"formik": "^2.2.9",
"google-protobuf": "^3.15.6",
Expand All @@ -84,7 +82,7 @@
"react": "^17.0.2",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-draggable": "^4.4.6",
"react-intersection-observer": "^8.26.2",
"react-markdown": "^6.0.2",
"react-redux": "^7.2.9",
Expand Down
2 changes: 1 addition & 1 deletion web/src/api/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const apiClient = new WebServiceClient(apiEndpoint, null, {
});

interface ApiCallback<Res> {
(err: grpcWeb.Error, response: { toObject: () => Res }): void;
(err: grpcWeb.RpcError, response: { toObject: () => Res }): void;
}

export async function apiRequest<Req, Res>(
Expand Down
Loading

0 comments on commit 57805c1

Please sign in to comment.