@duckduckgo/autoconsent 10.6.2 → 10.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -56,7 +56,7 @@ jobs:
56
56
  asana-output: ${{ steps.create-asana-tasks.outputs.ASANA_OUTPUT }}
57
57
  env:
58
58
  RELEASE_URL: ${{ needs.get_release_info.outputs.release-url }}
59
- RELEASE_NOTES: ${{ needs.get_release_info.outputs.release-notes }}
59
+ RELEASE_NOTES: See release notes [here](https://github.com/duckduckgo/autoconsent/blob/${{ inputs.tag_name }}/CHANGELOG.md)
60
60
  steps:
61
61
  # --- Setup ---
62
62
  - uses: actions/checkout@v3
@@ -105,7 +105,7 @@ jobs:
105
105
  - name: Update Android autoconsent reference
106
106
  run: |
107
107
  cd android
108
- npm install @duckduckgo/autoconsent@${{ env.TAG }}
108
+ npm install @duckduckgo/autoconsent~${{ env.TAG }}
109
109
  npm run rebuild-autoconsent
110
110
  cd ..
111
111
  - name: Create Android PR Body
@@ -168,7 +168,7 @@ jobs:
168
168
  - name: Update iOS autoconsent reference
169
169
  run: |
170
170
  cd ios
171
- npm install @duckduckgo/autoconsent@${{ env.TAG }}
171
+ npm install @duckduckgo/autoconsent~${{ env.TAG }}
172
172
  npm run rebuild-autoconsent
173
173
  cd ..
174
174
  - name: Create iOS PR Body
@@ -230,7 +230,7 @@ jobs:
230
230
  - name: Update macOS autoconsent reference
231
231
  run: |
232
232
  cd macos
233
- npm install @duckduckgo/autoconsent@${{ env.TAG }}
233
+ npm install @duckduckgo/autoconsent~${{ env.TAG }}
234
234
  npm run rebuild-autoconsent
235
235
  cd ..
236
236
  - name: Create macOS PR Body
@@ -292,7 +292,7 @@ jobs:
292
292
  - name: Update Windows autoconsent reference
293
293
  run: |
294
294
  cd windows/WindowsBrowser/Application/Autoconsent/External
295
- npm install @duckduckgo/autoconsent@${{ env.TAG }}
295
+ npm install @duckduckgo/autoconsent~${{ env.TAG }}
296
296
  npm run rebuild-autoconsent
297
297
  cd ../../../../../
298
298
  - name: Create Windows PR Body
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ # v10.7.0 (Thu May 02 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Fix the rule for termsfeed3 [#430](https://github.com/duckduckgo/autoconsent/pull/430) ([@muodov](https://github.com/muodov))
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - Add espace-personnel.agirc-arrco.fr [#429](https://github.com/duckduckgo/autoconsent/pull/429) ([@seia-soto](https://github.com/seia-soto))
10
+
11
+ #### Authors: 2
12
+
13
+ - HoJeong Go ([@seia-soto](https://github.com/seia-soto))
14
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
15
+
16
+ ---
17
+
18
+ # v10.6.3 (Fri Apr 26 2024)
19
+
20
+ #### 🐛 Bug Fix
21
+
22
+ - Fix race condition in iubenda, as seen on https://leaddev.com/leaddev-london [#428](https://github.com/duckduckgo/autoconsent/pull/428) ([@muodov](https://github.com/muodov))
23
+ - Tweak DDG release CI scripts [#426](https://github.com/duckduckgo/autoconsent/pull/426) ([@muodov](https://github.com/muodov))
24
+
25
+ #### Authors: 1
26
+
27
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
28
+
29
+ ---
30
+
1
31
  # v10.6.2 (Tue Apr 23 2024)
2
32
 
3
33
  #### 🐛 Bug Fix
@@ -141,8 +141,9 @@ const asanaCreateTasks = async () => {
141
141
  await asana.tasks.updateTask(gid, { name: newName, html_notes: subtaskNotes })
142
142
 
143
143
  if (extractedProjects) {
144
- for (const projectGid of extractedProjects.split(',')) {
145
- await asana.tasks.addProjectForTask(gid, { project: projectGid, insert_after: null })
144
+ for (const projectGidAndSection of extractedProjects.split(',')) {
145
+ const [projectGid, sectionGid] = projectGidAndSection.split(':')
146
+ await asana.tasks.addProjectForTask(gid, { project: projectGid, insert_after: null, section: sectionGid })
146
147
  }
147
148
  }
148
149
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 2,
3
3
  "name": "Autoconsent",
4
- "version": "2024.4.12",
4
+ "version": "2024.4.26",
5
5
  "background": {
6
6
  "scripts": [
7
7
  "background.bundle.js"
@@ -2611,6 +2611,35 @@
2611
2611
  }
2612
2612
  ]
2613
2613
  },
2614
+ {
2615
+ "name": "espace-personnel.agirc-arrco.fr",
2616
+ "runContext": {
2617
+ "urlPattern": "^https://espace-personnel\\.agirc-arrco\\.fr/"
2618
+ },
2619
+ "prehideSelectors": [
2620
+ ".cdk-overlay-container"
2621
+ ],
2622
+ "detectCmp": [
2623
+ {
2624
+ "exists": ".cdk-overlay-container app-esaa-cookie-component"
2625
+ }
2626
+ ],
2627
+ "detectPopup": [
2628
+ {
2629
+ "visible": ".cdk-overlay-container app-esaa-cookie-component"
2630
+ }
2631
+ ],
2632
+ "optIn": [
2633
+ {
2634
+ "waitForThenClick": ".btn-cookie-accepter"
2635
+ }
2636
+ ],
2637
+ "optOut": [
2638
+ {
2639
+ "waitForThenClick": ".btn-cookie-refuser"
2640
+ }
2641
+ ]
2642
+ },
2614
2643
  {
2615
2644
  "name": "etsy",
2616
2645
  "prehideSelectors": [
@@ -3447,18 +3476,18 @@
3447
3476
  ],
3448
3477
  "optIn": [
3449
3478
  {
3450
- "click": ".iubenda-cs-accept-btn"
3479
+ "waitForThenClick": ".iubenda-cs-accept-btn"
3451
3480
  }
3452
3481
  ],
3453
3482
  "optOut": [
3454
3483
  {
3455
- "click": ".iubenda-cs-customize-btn"
3484
+ "waitForThenClick": ".iubenda-cs-customize-btn"
3456
3485
  },
3457
3486
  {
3458
3487
  "eval": "EVAL_IUBENDA_0"
3459
3488
  },
3460
3489
  {
3461
- "click": "#iubFooterBtn"
3490
+ "waitForThenClick": "#iubFooterBtn"
3462
3491
  }
3463
3492
  ],
3464
3493
  "test": [
@@ -5760,9 +5789,8 @@
5760
5789
  "name": "termsfeed3",
5761
5790
  "vendorUrl": "https://termsfeed.com",
5762
5791
  "comment": "v3.x.x",
5763
- "cosmetic": true,
5764
5792
  "prehideSelectors": [
5765
- ".cc_dialog.cc_css_reboot"
5793
+ ".cc_dialog.cc_css_reboot,.cc_overlay_lock"
5766
5794
  ],
5767
5795
  "detectCmp": [
5768
5796
  {
@@ -5781,7 +5809,25 @@
5781
5809
  ],
5782
5810
  "optOut": [
5783
5811
  {
5784
- "hide": ".cc_dialog.cc_css_reboot"
5812
+ "if": {
5813
+ "exists": ".cc_dialog.cc_css_reboot .cc_b_cp"
5814
+ },
5815
+ "then": [
5816
+ {
5817
+ "click": ".cc_dialog.cc_css_reboot .cc_b_cp"
5818
+ },
5819
+ {
5820
+ "waitForVisible": ".cookie-consent-preferences-dialog .cc_cp_f_save button"
5821
+ },
5822
+ {
5823
+ "waitForThenClick": ".cookie-consent-preferences-dialog .cc_cp_f_save button"
5824
+ }
5825
+ ],
5826
+ "else": [
5827
+ {
5828
+ "hide": ".cc_dialog.cc_css_reboot,.cc_overlay_lock"
5829
+ }
5830
+ ]
5785
5831
  }
5786
5832
  ]
5787
5833
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Autoconsent",
4
- "version": "2024.4.12",
4
+ "version": "2024.4.26",
5
5
  "background": {
6
6
  "service_worker": "background.bundle.js"
7
7
  },
@@ -2611,6 +2611,35 @@
2611
2611
  }
2612
2612
  ]
2613
2613
  },
2614
+ {
2615
+ "name": "espace-personnel.agirc-arrco.fr",
2616
+ "runContext": {
2617
+ "urlPattern": "^https://espace-personnel\\.agirc-arrco\\.fr/"
2618
+ },
2619
+ "prehideSelectors": [
2620
+ ".cdk-overlay-container"
2621
+ ],
2622
+ "detectCmp": [
2623
+ {
2624
+ "exists": ".cdk-overlay-container app-esaa-cookie-component"
2625
+ }
2626
+ ],
2627
+ "detectPopup": [
2628
+ {
2629
+ "visible": ".cdk-overlay-container app-esaa-cookie-component"
2630
+ }
2631
+ ],
2632
+ "optIn": [
2633
+ {
2634
+ "waitForThenClick": ".btn-cookie-accepter"
2635
+ }
2636
+ ],
2637
+ "optOut": [
2638
+ {
2639
+ "waitForThenClick": ".btn-cookie-refuser"
2640
+ }
2641
+ ]
2642
+ },
2614
2643
  {
2615
2644
  "name": "etsy",
2616
2645
  "prehideSelectors": [
@@ -3447,18 +3476,18 @@
3447
3476
  ],
3448
3477
  "optIn": [
3449
3478
  {
3450
- "click": ".iubenda-cs-accept-btn"
3479
+ "waitForThenClick": ".iubenda-cs-accept-btn"
3451
3480
  }
3452
3481
  ],
3453
3482
  "optOut": [
3454
3483
  {
3455
- "click": ".iubenda-cs-customize-btn"
3484
+ "waitForThenClick": ".iubenda-cs-customize-btn"
3456
3485
  },
3457
3486
  {
3458
3487
  "eval": "EVAL_IUBENDA_0"
3459
3488
  },
3460
3489
  {
3461
- "click": "#iubFooterBtn"
3490
+ "waitForThenClick": "#iubFooterBtn"
3462
3491
  }
3463
3492
  ],
3464
3493
  "test": [
@@ -5760,9 +5789,8 @@
5760
5789
  "name": "termsfeed3",
5761
5790
  "vendorUrl": "https://termsfeed.com",
5762
5791
  "comment": "v3.x.x",
5763
- "cosmetic": true,
5764
5792
  "prehideSelectors": [
5765
- ".cc_dialog.cc_css_reboot"
5793
+ ".cc_dialog.cc_css_reboot,.cc_overlay_lock"
5766
5794
  ],
5767
5795
  "detectCmp": [
5768
5796
  {
@@ -5781,7 +5809,25 @@
5781
5809
  ],
5782
5810
  "optOut": [
5783
5811
  {
5784
- "hide": ".cc_dialog.cc_css_reboot"
5812
+ "if": {
5813
+ "exists": ".cc_dialog.cc_css_reboot .cc_b_cp"
5814
+ },
5815
+ "then": [
5816
+ {
5817
+ "click": ".cc_dialog.cc_css_reboot .cc_b_cp"
5818
+ },
5819
+ {
5820
+ "waitForVisible": ".cookie-consent-preferences-dialog .cc_cp_f_save button"
5821
+ },
5822
+ {
5823
+ "waitForThenClick": ".cookie-consent-preferences-dialog .cc_cp_f_save button"
5824
+ }
5825
+ ],
5826
+ "else": [
5827
+ {
5828
+ "hide": ".cc_dialog.cc_css_reboot,.cc_overlay_lock"
5829
+ }
5830
+ ]
5785
5831
  }
5786
5832
  ]
5787
5833
  },