Skip to content

Commit

Permalink
Release 1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianberneanu committed Sep 2, 2022
1 parent 4450097 commit 6c86226
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 19 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog
## Version 1.1.0
- Added support for simple pre-anonymization `WHERE` clauses.
- Added `sum` and `avg` aggregrators.
- Added `*_noise` variants of aggregrators.
- Added `count_histogram` aggregrator.
- Allow more metadata discovery queries.
- Various tweaks and fixes.

## Version 1.0.3
- Reject unsupported column types during AID labeling.
Expand Down
36 changes: 18 additions & 18 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,37 @@
"name": "pg_diffix",
"abstract": "A PostgreSQL extension for strong dynamic anonymization.",
"description": "Diffix is a bundled set of mechanisms for anonymizing structured data. Open Diffix is a project to make Diffix anonymization free and open. More details at open-diffix.org.",
"version": "1.0.2",
"version": "1.1.0",
"maintainer": "Open Diffix <hello@open-diffix.org>",
"license": {
"restricted": "https://github.com/diffix/pg_diffix/blob/master/LICENSE.md"
},
"release_status": "stable",
"provides": {
"pg_diffix": {
"abstract": "A PostgreSQL extension for strong dynamic anonymization.",
"file": "src/pg_diffix.c",
"docfile": "docs/user_guide.md",
"version": "1.0.2"
}
"pg_diffix": {
"abstract": "A PostgreSQL extension for strong dynamic anonymization.",
"file": "src/pg_diffix.c",
"docfile": "docs/user_guide.md",
"version": "1.1.0"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "13.0.0"
}
"requires": {
"PostgreSQL": "13.0.0"
}
}
},
"resources": {
"homepage": "https://open-diffix.org/",
"bugtracker": {
"web": "https://github.com/diffix/pg_diffix/issues",
"mailto": "hello@open-diffix.org"
"web": "https://github.com/diffix/pg_diffix/issues",
"mailto": "hello@open-diffix.org"
},
"repository": {
"url": "git://github.com/diffix/pg_diffix.git",
"web": "https://github.com/diffix/pg_diffix/",
"type": "git"
"url": "git://github.com/diffix/pg_diffix.git",
"web": "https://github.com/diffix/pg_diffix/",
"type": "git"
}
},
"tags": [
Expand All @@ -43,9 +43,9 @@
"privacy",
"privacy-protection",
"privacy-tools"
],
],
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
}
}

0 comments on commit 6c86226

Please sign in to comment.