Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add changelog / release notes #181

Merged
merged 3 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Changelog

## v1.x.x (2023/xx/xx)

#### Enhancements
- DSP Site : serve attestation file version2 on privacy-sandbox-demos-dsp.dev
- Tools : Add [Aggregatable Report Converter](https://github.com/privacysandbox/privacy-sandbox-demos/tree/main/tools/aggregatable_report_converter) to the tooling codebase. This tool helps developers to create debug aggregatable reports that can be used for Local Testing and AWS Aggregation Service testing.
- GitHub documentation : Add a changelog

#### Bug Fixes


---

## v1.1 (2023/10/13)

#### Enhancements
- Shop site : refactor service using expressJS (from nextJS)
- Shop site : fix issue with Firebase filtering session cookies
- DSP Site : attestation file is served from privacy-sandbox-demos-dsp.dev
- Use Case : remarketing. Move `renderURL` from the SSP codebase to the DSP codebase.
- Use Case : VAST Video Protected Audience. Release v1.


#### Bug Fixes
- Use Case : Single-touch conversion Attribution. Fix registering attribution sources ("Attribution-Reporting-Eligible" is a Dictionary Structured Header and thus need to be decoded accordingly)
- Home site : fix Docusaurus and nginx configuration that prevented direct links to use cases.
- Home site : fix broken links in documentation
- GitHub documentation : update deployment guides

---

## v1.0.0 (2023/06/30)
- Launch Privacy Sandbox Demos [Github Repository](https://github.com/privacysandbox/privacy-sandbox-demos)
- Launch hosted demos [https://privacy-sandbox-demos.dev/ ](https://privacy-sandbox-demos.dev/)
- Publication of a [blog post ](https://developer.chrome.com/blog/privacy-sandbox-demos/)on [developers.chrome.com](http://developers.chrome.com/)
Original file line number Diff line number Diff line change
@@ -1,9 +1,48 @@
{
"privacy_sandbox_api_attestations": [
{
"attestation_parser_version": "2",
"attestation_version": "2",
"privacy_policy": [
"https://policies.google.com/privacy"
],
"ownership_token": "SGYvJieJb5EaxhMAJUh9qmrfZNSQewLYbHWx6NpeRzDLZSF0DwfVfchu5sHCxaFv",
"issued_seconds_since_epoch": 1697505143,
"enrollment_id": "UNRJE",
"enrollment_site": "https://privacy-sandbox-demos-dsp.dev",
"platform_attestations": [
{
"platform": "chrome",
"attestations": {
"attribution_reporting_api": {
"ServiceNotUsedForIdentifyingUserAcrossSites": true
},
"shared_storage_api": {
"ServiceNotUsedForIdentifyingUserAcrossSites": true
},
"private_aggregation_api": {
"ServiceNotUsedForIdentifyingUserAcrossSites": true
},
"topics_api": {
"ServiceNotUsedForIdentifyingUserAcrossSites": true
},
"protected_audience_api": {
"ServiceNotUsedForIdentifyingUserAcrossSites": true
}
}
},
{
"platform": "android",
"attestations": {}
}
]
},
{
"attestation_parser_version": "1",
"attestation_version": "1",
"privacy_policy": ["https://policies.google.com/privacy"],
"privacy_policy": [
"https://policies.google.com/privacy"
],
"ownership_token": "yE67UyEyxUmBsz0y0hyeiU44CnbliMjMS93fnBgeb8Jlst1YbwYXAE5ucVige0eX",
"issued_seconds_since_epoch": 1691175921,
"expiry_seconds_since_epoch": 1706731521,
Expand Down