Skip to content

Commit 10ee3fd

Browse files
committed
Merge branch 'dev'
2 parents c50d8c6 + 81de164 commit 10ee3fd

File tree

8 files changed

+17
-7
lines changed

8 files changed

+17
-7
lines changed

.github/workflows/mamonsu-tests-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
echo "zabbix_address=$(hostname -I | awk '{print $1}')" >> $GITHUB_OUTPUT
8787
id: zabbix_address
8888
- name: Edit Zabbix address in agent.conf
89-
run: sed -i "s/\(address *= *\).*/\1 ${{ steps.zabbix_address.outputs.zabbix_address }}/" ${{ env.MAMONSU_PATH }}/github-actions-tests/sources/agent_3.5.11.conf
89+
run: sed -i "s/\(address *= *\).*/\1 ${{ steps.zabbix_address.outputs.zabbix_address }}/" ${{ env.MAMONSU_PATH }}/github-actions-tests/sources/agent_3.5.12.conf
9090

9191
- name: Copy test scripts to container
9292
run: docker exec $( echo "${{ matrix.docker_os }}" | sed 's/://' | sed 's/\.//' ) mkdir -p -m 755 /mamonsu/

.github/workflows/mamonsu-tests-master.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
echo "zabbix_address=$(hostname -I | awk '{print $1}')" >> $GITHUB_OUTPUT
9292
id: zabbix_address
9393
- name: Edit Zabbix address in agent.conf
94-
run: sed -i "s/\(address *= *\).*/\1 ${{ steps.zabbix_address.outputs.zabbix_address }}/" ${{ env.MAMONSU_PATH }}/github-actions-tests/sources/agent_3.5.11.conf
94+
run: sed -i "s/\(address *= *\).*/\1 ${{ steps.zabbix_address.outputs.zabbix_address }}/" ${{ env.MAMONSU_PATH }}/github-actions-tests/sources/agent_3.5.12.conf
9595

9696
- name: Copy test scripts to container
9797
run: docker exec $( echo "${{ matrix.docker_os }}" | sed 's/://' | sed 's/\.//' ) mkdir -p -m 755 /mamonsu/

github-actions-tests/mamonsu_build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if [ "${OS%:*}" = "centos" ]; then
4141
python3 setup.py build && python3 setup.py install
4242
make rpm
4343
sudo rpm -i ./mamonsu*.rpm
44-
cat /mamonsu/github-actions-tests/sources/agent_3.5.11.conf > /etc/mamonsu/agent.conf
44+
cat /mamonsu/github-actions-tests/sources/agent_3.5.12.conf > /etc/mamonsu/agent.conf
4545
# ensuring mamonsu can actually start
4646
sudo su -s /bin/bash -c "mamonsu bootstrap -x --user postgres -d mamonsu_test_db" mamonsu
4747
/etc/init.d/mamonsu restart
@@ -65,7 +65,7 @@ elif [ "${OS%:*}" = "ubuntu" ]; then
6565
python3 setup.py build && python3 setup.py install
6666
make deb
6767
sudo dpkg -i ./mamonsu*.deb
68-
cat /mamonsu/github-actions-tests/sources/agent_3.5.11.conf > /etc/mamonsu/agent.conf
68+
cat /mamonsu/github-actions-tests/sources/agent_3.5.12.conf > /etc/mamonsu/agent.conf
6969
# ensuring mamonsu can actually start
7070
sudo su -s /bin/bash -c "mamonsu bootstrap -x --user postgres -d mamonsu_test_db" mamonsu
7171
service mamonsu restart

mamonsu/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = 'Dmitry Vasilyev'
22
__author_email__ = 'info@postgrespro.ru'
33
__description__ = 'Monitoring agent for PostgreSQL'
4-
__version__ = '3.5.11'
4+
__version__ = '3.5.12'
55
__licence__ = 'BSD'
66

77
__url__ = 'https://github.com/postgrespro/mamonsu'

packaging/debian/changelog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
mamonsu (3.5.12-1) stable; urgency=low
2+
* Port version parser code from public archive of pypa/pkg_resources;
3+
* Thread-safe implementation of connection cache;
4+
* Skip BGwriter and Checkpoint plugins initialization if Postgres metrics collection was explicitly disabled;
5+
16
mamonsu (3.5.11-1) stable; urgency=low
27
* Updated statements plugin: added support for pgpro_stats 1.8;
38
* Fixed types for count_wal_lag_lsn() function (int to bigint);

packaging/rpm/SPECS/mamonsu.spec

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: mamonsu
2-
Version: 3.5.11
2+
Version: 3.5.12
33
Release: 1%{?dist}
44
Summary: Monitoring agent for PostgreSQL
55
Group: Applications/Internet
@@ -73,6 +73,11 @@ chown -R mamonsu:mamonsu /var/log/mamonsu
7373
chown -R mamonsu:mamonsu /etc/mamonsu
7474

7575
%changelog
76+
* Wed Mar 5 2025 Maxim Styushin <m.styushin@postgrespro.ru> - 3.5.12-1
77+
- Port version parser code from public archive of pypa/pkg_resources;
78+
- Thread-safe implementation of connection cache;
79+
- Skip BGwriter and Checkpoint plugins initialization if Postgres metrics collection was explicitly disabled;
80+
7681
* Wed Jan 15 2025 Maxim Styushin <m.styushin@postgrespro.ru> - 3.5.11-1
7782
- Updated statements plugin: added support for pgpro_stats 1.8;
7883
- Fixed types for count_wal_lag_lsn() function (int to bigint);

packaging/win/mamonsu.def.nsh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
!define NAME Mamonsu
2-
!define VERSION 3.5.11
2+
!define VERSION 3.5.12
33
!define MAMONSU_REG_PATH "Software\PostgresPro\Mamonsu"
44
!define MAMONSU_REG_UNINSTALLER_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall"
55
!define EDB_REG "SOFTWARE\Postgresql"

0 commit comments

Comments
 (0)