Skip to content

Commit 000f245

Browse files
committed
upgrade to v1.0.1
1 parent db9db7a commit 000f245

33 files changed

+242
-182
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# v1.0.1
2+
3+
2021-09-14
4+
5+
* Documentation Update
6+
* Chinese document now viable
7+
* Machine-Translated English document now viable
8+
* Bug Fix: `pgsql-remove` does not remove primary instance.
9+
* Bug Fix: replace pg_instance with pg_cluster + pg_seq
10+
* Start-At-Task may fail due to pg_instance undefined
11+
* Bug Fix: remove citus from default shared preload library
12+
* citus will force max_prepared_transaction to non-zero value
13+
* Bug Fix: ssh sudo checking in `configure`:
14+
* now `ssh -t sudo -n ls` is used for privilege checking
15+
* Typo Fix: `pg-backup` script typo
16+
* Alert Adjust: Remove ntp sanity check alert (dupe with ClockSkew)
17+
* Exporter Adjust: remove collector.systemd to reduce overhead
18+
119
# v1.0.0
220

321
## Highlights

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#==============================================================#
99

1010
# pigsty version
11-
VERSION?=v1.0.0
11+
VERSION?=v1.0.1
1212

1313
# pigsty cluster (meta by default)
1414
CLS?=meta

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
**Battery-Included Open-Source PostgreSQL Distribution**
66

7-
> Latest Version: [v1.0.0](https://github.com/Vonng/pigsty/releases/tag/v1.0.0) | [Public Demo](https://demo.pigsty.cc)
7+
> Latest Version: [v1.0.1](https://github.com/Vonng/pigsty/releases/tag/v1.0.1) | [Public Demo](https://demo.pigsty.cc)
88
>
99
> Documentation: [En Docs](https://pigsty.cc/) | [中文文档](https://pigsty.cc/#/zh-cn/) | [Github Pages](https://vonng.github.io/pigsty/#/)
1010
>
@@ -230,7 +230,7 @@ There are two specs of sandbox: 1 node (the default) and 4 node (full sandbox)
230230
Pigsty ships with handy tools such as Jupyterlab, PostgreSQL, Grafana, Echarts. Which is great for data analysis & visualization.
231231
You can turn pigsty sandbox into an IDE for making data-intensive applications and demos: Processing data with SQL & Python, Visualize with Grafana & Echarts.
232232

233-
Pigsty comes with two example apps: `covid` for covid-19 data visualization, and `isd` for visualizing global surface weather station data.
233+
Pigsty comes with two example apps: [`covid`](http://demo.pigsty.cc/d/covid-overview) for covid-19 data visualization, and [`isd`](http://demo.pigsty.cc/d/isd-overview) for visualizing global surface weather station data.
234234

235235
![](docs/_media/overview-covid.jpg)
236236

@@ -248,8 +248,8 @@ It takes 3 commands to pull up pigsty: **download**, **configure**, **install**
248248
Get a fresh Linux x86_64 CentOS 7.8 node. with nopass `sudo` & `ssh` access, then:
249249

250250
```bash
251-
# curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.0/pigsty.tgz -o ~/pigsty.tgz
252-
# curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.0/pkg.tgz -o /tmp/pkg.tgz
251+
# curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.1/pigsty.tgz -o ~/pigsty.tgz
252+
# curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.1/pkg.tgz -o /tmp/pkg.tgz
253253
git clone https://github.com/Vonng/pigsty && cd pigsty
254254
./configure
255255
make install

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# const
2525
#==============================================================#
2626
# pigsty version string
27-
VERSION=v1.0.0
27+
VERSION=v1.0.1
2828

2929
# where to download pkg.tgz ?
3030
DEFAULT_SRC_URL="https://github.com/Vonng/pigsty/releases/download/${VERSION}/pigsty.tgz"

docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Pigsty
22

3-
## Pigsty v1.0.0 Documentation
3+
## Pigsty v1.0.1 Documentation
44

55
**Battery-Included Open-Source PostgreSQL Distribution**
66

7-
> Latest Version: [v1.0.0](https://github.com/Vonng/pigsty/releases/tag/v1.0.0) | [Github Repo](https://github.com/Vonng/pigsty) | [Public Demo](https://demo.pigsty.cc)
7+
> Latest Version: [v1.0.1](https://github.com/Vonng/pigsty/releases/tag/v1.0.1) | [Github Repo](https://github.com/Vonng/pigsty) | [Public Demo](https://demo.pigsty.cc)
88
>
99
> Documentation: [En Docs](https://pigsty.cc/) | [中文文档](https://pigsty.cc/#/zh-cn/) | [Github Pages](https://vonng.github.io/pigsty/#/)
1010
@@ -227,7 +227,7 @@ There are two specs of sandbox: 1 node (the default) and 4 node (full sandbox)
227227
Pigsty ships with handy tools such as Jupyterlab, PostgreSQL, Grafana, Echarts. Which is great for data analysis & visualization.
228228
You can turn pigsty sandbox into an IDE for making data-intensive applications and demos: Processing data with SQL & Python, Visualize with Grafana & Echarts.
229229

230-
Pigsty comes with two example apps: `covid` for covid-19 data visualization, and `isd` for visualizing global surface weather station data.
230+
Pigsty comes with two example apps: [`covid`](http://demo.pigsty.cc/d/covid-overview) for covid-19 data visualization, and [`isd`](http://demo.pigsty.cc/d/isd-overview) for visualizing global surface weather station data.
231231

232232
![](_media/overview-covid.jpg)
233233

docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![logo](_media/icon.svg)
22

3-
# Pigsty <small>1.0.0</small>
3+
# Pigsty <small>1.0.1</small>
44

55
> <b>Battery-Included Open-Source PostgreSQL Distribution</b>
66

docs/_media/group.jpg

-48.4 KB
Loading

docs/_media/how-zh.svg

Lines changed: 2 additions & 2 deletions
Loading

docs/_media/how.svg

Lines changed: 2 additions & 2 deletions
Loading

docs/s-faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pigsty source package: `pigsty.tgz` can be obtained from the following location.
99
* If users need to do offline installation, they can download the source package and offline installation package from Github or other channels in advance, and upload them to the server via scp, ftp, etc.
1010

1111
```bash
12-
curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.0/pigsty.tgz -o ~/pigsty.tgz
12+
curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.1/pigsty.tgz -o ~/pigsty.tgz
1313
```
1414

1515
-----------
@@ -21,7 +21,7 @@ During `configure`, if the offline installer `/tmp/pkg.tgz` does not exist, the
2121
If the user needs to install in an environment where **no internet access**, or Github access is restricted, they will need to download and upload it to the target server at the specified location themselves.
2222

2323
```bash
24-
# curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.0/pkg.tgz -o /tmp/pkg.tgz
24+
# curl -SL https://github.com/Vonng/pigsty/releases/download/v1.0.1/pkg.tgz -o /tmp/pkg.tgz
2525
```
2626

2727
Place it under the `/tmp/pkg.tgz` path on the installation machine and it will be used automatically during the installation. The offline package will be extracted to: `/www/pigsty` by default.

0 commit comments

Comments
 (0)