Skip to content

Commit 2b89c2e

Browse files
authored
Merge pull request #723 from GoogleChromeLabs/develop
v0.9.0
2 parents 0ab48b0 + b1423bd commit 2b89c2e

File tree

430 files changed

+63800
-24250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

430 files changed

+63800
-24250
lines changed

.eslintrc.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"version": "detect"
2828
},
2929
"import/resolver": {
30-
"@ps-analysis-tool/eslint-import-resolver": {
30+
"@google-psat/eslint-import-resolver": {
3131
"mapping": {
32-
"^@ps-analysis-tool\\/(.*)\\/(.*)": "./packages/$1/src/$2",
33-
"^@ps-analysis-tool\\/(.*)": "./packages/$1/src/"
32+
"^@google-psat\\/(.*)\\/(.*)": "./packages/$1/src/$2",
33+
"^@google-psat\\/(.*)": "./packages/$1/src/"
3434
},
3535
"extensions": [".js", ".jsx", ".ts", ".tsx"]
3636
},

.github/workflows/stale.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Mark issues as stale.
2+
3+
on:
4+
schedule:
5+
- cron: '44 20 * * *'
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
pull-requests: write
13+
14+
steps:
15+
- uses: actions/stale@v5
16+
with:
17+
repo-token: ${{ secrets.GITHUB_TOKEN }}
18+
days-before-stale: 30
19+
days-before-issue-close: 14
20+
exempt-all-milestones: true
21+
only-labels: 'support'
22+
stale-issue-message: 'This issue has been marked as stale because there has been no activity in the past 30 days.'
23+
close-issue-message: 'This issue has been closed since there was no activity since it was marked as stale.'
24+
stale-issue-label: 'stale'
25+
remove-issue-stale-when-updated: true
26+
labels-to-remove-when-unstale: 'stale'

CHANGELOG.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,4 +356,44 @@
356356
* Miscellaneous CLI dashboard improvements https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/660
357357

358358
## Others
359-
* Feature: Update babel-loader webpack config to have caching support for faster builds https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/452
359+
* Feature: Update babel-loader webpack config to have caching support for faster builds https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/452
360+
361+
362+
#v0.9.0
363+
## Extension
364+
* Feature: Complete migration to CDP https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/539
365+
* Feature: Add and implement i18n translation locales https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/713
366+
* Feature: Navigate from PSAT to network panel https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/685
367+
* Feature: Add “Protected Audience” landing page https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/714
368+
* Feature: Add blocking direction icons in CLI https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/715
369+
* Fix: Persist filters after web page reload https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/692
370+
* Fix: Exemption section disappearing https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/691
371+
* Fix: GSI messaging on correct urls. https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/684
372+
* Fix: Inconsistent highlighting on livemint.com https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/683
373+
* Fix: Update menu bar scrolling logic https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/699
374+
* Add known breakages section in CLI https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/708
375+
* Fix: v1.0 QA issues https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/717
376+
* Fix: Conditionally use `I18n.getMessage` function inside `InfoCard` https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/720
377+
* Fix: Update UI/UX of table components https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/679
378+
* Fix: Update UX of design system components https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/693
379+
380+
381+
## CLI
382+
* Upgrade to the latest Puppeteer version and fix cookie mapping issues https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/704
383+
* Update CLI messaging to be smaller and more concise https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/721
384+
* CLI: Refactor CLI package into 2 different packages https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/687
385+
* Feature: Publish packages on the NPM registry https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/698
386+
* Make -u argument optional in CLI. https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/711
387+
* Fix: Create separate CSV generation utils for CLI dashboard and extension https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/619
388+
* Add website hostname as prefix to cookie table CSV https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/700
389+
* Fix: Report throwing error when downloaded from CLI. https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/709
390+
* CLI: Add ability to catch exempted cookies https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/712
391+
* Fix: `Samesite` value in cookie table CSV https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/726
392+
* CLI: Fix missing frame key in the page frames hash map https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/728
393+
* Fix: Paths for CLI to work on global as well as local installation https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/727
394+
395+
## Others
396+
* Add `chrome-pat` and `chrome-pat-ps` commands to test Private Advertising https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/706
397+
* Close support issues using stale actions. https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/571
398+
* Temporarily remove storybook package https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/702
399+
* Refactor: Update package scope name to `@google-psat` https://github.com/GoogleChromeLabs/ps-analysis-tool/pull/725

0 commit comments

Comments
 (0)