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
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