mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 15:16:29 +00:00
Compare commits
8 Commits
dev/FS-704
...
dev/fix-do
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c58c95c9f1 | ||
|
|
3887637f1e | ||
|
|
7a84e34630 | ||
|
|
9ab4acea78 | ||
|
|
ef962436f7 | ||
|
|
9a68206b4a | ||
|
|
31af938354 | ||
|
|
061025b62f |
77
.github/workflows/sonarqube-scan.yml
vendored
77
.github/workflows/sonarqube-scan.yml
vendored
@@ -1,77 +0,0 @@
|
|||||||
###
|
|
||||||
# Foundation-security SonarQube workflow
|
|
||||||
# version: 2.1
|
|
||||||
###
|
|
||||||
name: Foundation-Security/SonarQube Scan
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "**"
|
|
||||||
branches:
|
|
||||||
- "*main*"
|
|
||||||
- "*master*"
|
|
||||||
- "*STABLE*"
|
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize, reopened]
|
|
||||||
branches:
|
|
||||||
- "**"
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
ref:
|
|
||||||
description: "Branch to scan"
|
|
||||||
required: true
|
|
||||||
default: "main"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
SonarQube-Scan:
|
|
||||||
name: SonarQube Scan Job
|
|
||||||
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
||||||
permissions:
|
|
||||||
id-token: write
|
|
||||||
contents: read
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- name: Checkout source repository for dispatch runs
|
|
||||||
id: checkout-source-dispatch
|
|
||||||
if: github.event_name == 'workflow_dispatch'
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
repository: ${{ github.repository }}
|
|
||||||
ref: ${{ inputs.ref }}
|
|
||||||
path: source
|
|
||||||
token: ${{ secrets.GH_SLONIK }}
|
|
||||||
|
|
||||||
- name: Checkout source repository for non-dispatch runs
|
|
||||||
id: checkout-source
|
|
||||||
if: github.event_name != 'workflow_dispatch'
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
repository: ${{ github.repository }}
|
|
||||||
ref: ${{ github.ref }}
|
|
||||||
path: source
|
|
||||||
token: ${{ secrets.GH_SLONIK }}
|
|
||||||
|
|
||||||
- name: Checkout foundation-security repository
|
|
||||||
id: checkout-foundation-security
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
repository: EnterpriseDB/foundation-security
|
|
||||||
ref: v2
|
|
||||||
path: foundation-security
|
|
||||||
token: ${{ secrets.GH_SLONIK }}
|
|
||||||
|
|
||||||
- name: SonarQube Scan
|
|
||||||
id: call-sq-composite
|
|
||||||
uses: ./foundation-security/actions/sonarqube
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GH_SLONIK }}
|
|
||||||
github-ref: ${{ github.ref_name }}
|
|
||||||
sonarqube-url: ${{ vars.SQ_URL }}
|
|
||||||
sonarqube-token: ${{ secrets.SONARQUBE_TOKEN }}
|
|
||||||
project-name: ${{ github.event.repository.name }}
|
|
||||||
pull-request-key: ${{ github.event.number }}
|
|
||||||
pull-request-branch: ${{ github.head_ref }}
|
|
||||||
pull-request-base-branch: ${{ github.base_ref }}
|
|
||||||
foundation-security-sonarqube-token: ${{ secrets.FOUNDATION_SECURITY_SONARQUBE_TOKEN }}
|
|
||||||
cloudsmith-token: ${{ secrets.CLOUDSMITH_READ_ALL }}
|
|
||||||
@@ -8,7 +8,7 @@ replication, and perform administrative tasks such as failover or switchover
|
|||||||
operations.
|
operations.
|
||||||
|
|
||||||
The most recent `repmgr` version (5.3.2) supports all PostgreSQL versions from
|
The most recent `repmgr` version (5.3.2) supports all PostgreSQL versions from
|
||||||
9.5 to 15. PostgreSQL 9.4 is also supported, with some restrictions.
|
9.5 to 14. PostgreSQL 9.4 is also supported, with some restrictions.
|
||||||
|
|
||||||
`repmgr` is distributed under the GNU GPL 3 and maintained by EnterpriseDB.
|
`repmgr` is distributed under the GNU GPL 3 and maintained by EnterpriseDB.
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
AC_INIT([repmgr], [5.4.0], [repmgr@googlegroups.com], [repmgr], [https://repmgr.org/])
|
AC_INIT([repmgr],[5.4.1],[repmgr@googlegroups.com],[repmgr],[https://repmgr.org/])
|
||||||
|
|
||||||
AC_COPYRIGHT([Copyright (c) 2010-2021, EnterpriseDB Corporation])
|
AC_COPYRIGHT([Copyright (c) 2010-2021, EnterpriseDB Corporation])
|
||||||
|
|
||||||
AC_CONFIG_HEADER(config.h)
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
|
||||||
AC_ARG_VAR([PG_CONFIG], [Location to find pg_config for target PostgreSQL (default PATH)])
|
AC_ARG_VAR([PG_CONFIG], [Location to find pg_config for target PostgreSQL (default PATH)])
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#define REPMGR_VERSION_DATE ""
|
#define REPMGR_VERSION_DATE ""
|
||||||
#define REPMGR_VERSION "5.4dev"
|
#define REPMGR_VERSION "5.4.1"
|
||||||
#define REPMGR_VERSION_NUM 50400
|
#define REPMGR_VERSION_NUM 50401
|
||||||
#define REPMGR_EXTENSION_VERSION "5.4"
|
#define REPMGR_EXTENSION_VERSION "5.4"
|
||||||
#define REPMGR_EXTENSION_NUM 50400
|
#define REPMGR_EXTENSION_NUM 50400
|
||||||
#define REPMGR_RELEASE_DATE "2022-XX-XX"
|
#define REPMGR_RELEASE_DATE "2023-07-04"
|
||||||
#define PG_ACTUAL_VERSION_NUM
|
#define PG_ACTUAL_VERSION_NUM
|
||||||
|
|||||||
Reference in New Issue
Block a user