Skip to content

Commit 0b6fbbb

Browse files
authored
Merge pull request #916 from percona/release-2.4.0
Release 2.4.0
2 parents a6edba8 + 767bdcf commit 0b6fbbb

File tree

157 files changed

+12077
-9810
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+12077
-9810
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919
pull_request:
2020
branches:
2121
- main
22+
- dev
2223
paths-ignore:
2324
- "e2e-tests/**"
2425
- "packaging/**"

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
with:
7676
go-version: "1.19"
7777
- run: go install golang.org/x/tools/cmd/goimports@latest
78-
- run: go install mvdan.cc/gofumpt@latest
78+
- run: go install mvdan.cc/gofumpt@v0.5.0
7979
- run: goimports -w -local "github.com/percona" $(find . -not -path "*/vendor/*" -name "*.go")
8080
- run: gofumpt -w -extra $(find . -not -path "*/vendor/*" -name "*.go")
8181
- uses: reviewdog/action-suggester@v1

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Scan
22
on:
33
push:
4-
branches: ["main"]
4+
branches: ["main", "dev"]
55
pull_request:
6-
branches: ["main"]
6+
branches: ["main", "dev"]
77
jobs:
88
scan:
99
name: Trivy

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ define ENVS_STATIC
2020
endef
2121

2222
BUILD_FLAGS=-mod=vendor -tags gssapi
23-
versionpath?=github.com/percona/percona-backup-mongodb/version
23+
versionpath?=github.com/percona/percona-backup-mongodb/pbm/version
2424
LDFLAGS= -X $(versionpath).gitCommit=$(GITCOMMIT) -X $(versionpath).gitBranch=$(GITBRANCH) -X $(versionpath).buildTime=$(BUILDTIME) -X $(versionpath).version=$(VERSION)
2525
LDFLAGS_STATIC=$(LDFLAGS) -extldflags "-static"
2626
LDFLAGS_TESTS_BUILD=$(LDFLAGS)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Percona Backup for MongoDB
22
[![Go Report Card](https://goreportcard.com/badge/github.com/percona/percona-backup-mongodb)](https://goreportcard.com/report/github.com/percona/percona-backup-mongodb) [![codecov](https://codecov.io/gh/percona/percona-backup-mongodb/branch/master/graph/badge.svg?token=TiuOmTfp2p)](https://codecov.io/gh/percona/percona-backup-mongodb) [![CLA assistant](https://cla-assistant.percona.com/readme/badge/percona/percona-backup-mongodb)](https://cla-assistant.percona.com/percona/percona-backup-mongodb)
33

4-
![PBM logo](doc/source/images/backup-mongo.jpeg)
4+
![PBM logo](backup-mongo.jpeg)
55

66
Percona Backup for MongoDB (PBM) is a distributed, low-impact solution for achieving
77
consistent backups of MongoDB sharded clusters and replica sets. Percona Backup for MongoDB supports Percona Server for MongoDB and MongoDB Community Edition v4.4 and higher.

0 commit comments

Comments
 (0)