Skip to content

Commit

Permalink
Update ChangeLog and version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Aug 16, 2022
1 parent 077cb54 commit 5bbf690
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Tue Aug 16 2022 - Version 1.3.0

This release is maintenance release since last release to fix issues
reported by users.

- Fix extension file and regression test to remove the creation of
the extension's schema if it not exist per CVE-2022-2625.
- Fix case where pg_dbms_job does not run job anymore after a PG
restart. Thanks to longforrich for the patch.

Mon Apr 11 2022 - Version 1.2.0

This release is maintenance release since last release to fix issues
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ Each database that needs to use `pg_dbms_job` must creates the extension:

To upgrade to a new version execute:

psql -d mydb -c 'ALTER EXTENSION pg_dbms_job UPDATE TO "1.2.0"'
psql -d mydb -c 'ALTER EXTENSION pg_dbms_job UPDATE TO "1.3.0"'

If you doesn't have the privileges to create an extension you can just import the extension file into the database, for example:

psql -d mydb -f sql/pg_dbms_job--1.2.0.sql
psql -d mydb -f sql/pg_dbms_job--1.3.0.sql

This is especially useful for database in DBaas cloud services. To upgrade just import the extension upgrade files using psql.

Expand Down

0 comments on commit 5bbf690

Please sign in to comment.