Skip to content

Commit

Permalink
Release build 6.40.0 [ci release]
Browse files Browse the repository at this point in the history
  • Loading branch information
shakyShane authored and github-actions[bot] committed Nov 27, 2024
1 parent dfef00e commit e51efbc
Show file tree
Hide file tree
Showing 136 changed files with 17,288 additions and 8,769 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# .git-blame-ignore-revs
# Moved all packaged to root level https://github.com/duckduckgo/content-scope-scripts/pull/1103
f16b140c7731f9a66619e426b1f24414abaeb954
# Switched to a shared DDG ESLint config https://github.com/duckduckgo/content-scope-scripts/pull/1185
76bab4d80982ddab63265c694ab96c27a0fa5138
# introduced Prettier https://github.com/duckduckgo/content-scope-scripts/pull/1198
Expand Down
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'daily'
interval: 'weekly'
target-branch: 'main'
open-pull-requests-limit: 20
labels:
Expand Down
23 changes: 21 additions & 2 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
- fix: randomUUID is absent in none-secure contexts (#1254)
- Support Conditional Clicking in Broker Protection (#1141)
- ntp: favicon fixes (#1286)
- ntp: missing translations (#1285)
- ntp: temporary events for show more/less (#1281)
- Weekly dependabot.yml updates (#1275)
- Add install steps to README.md (#1282)
- ntp: add telemetry events for show/hide (#1280)
- ntp: added translations (#1279)
- ntp: virtual list for favorites (#1269)
- NTP: UI Privacy Stats spacing and secondary expansion (#1270)
- Update .git-blame-ignore-revs (#1273)
- Bump @playwright/test from 1.48.2 to 1.49.0 (#1239)
- build(deps-dev): bump the rollup group across 1 directory with 2 updates (#1267)
- build(deps-dev): bump @duckduckgo/privacy-configuration (#1271)
- build(deps): bump @rive-app/canvas-single from 2.23.8 to 2.23.10 (#1258)
- Bump typescript-eslint from 8.14.0 to 8.15.0 (#1241)
- ntp: prepare translations (#1262)
- add test covering insecure context (#1264)
- ntp: support window->window drop in favorites (#1260)
- ntp: per-widget error boundary (#1249)
- ntp: handle drag + drop outside of favorites (#1256)
- New Tab Page and NTP Widget styles (#1229)
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,21 @@ Utilities to automatically generate TypeScript types from JSON Schema files.

## NPM commands

Consider using [nvm](https://github.com/nvm-sh/nvm) to manage node versions, after installing in the project directory run:

```
nvm use
```

From the top-level root folder of this npm workspace, you can run the following npm commands:

**Install dependencies**:

Will install all the dependencies we need to build and run the project:
```
npm install
```

**Build all workspaces**:

Use this to produce the same output as a release. The `build` directory will be populated with
Expand Down
4 changes: 2 additions & 2 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3201,8 +3201,8 @@
};

// shared/components/Fallback/Fallback.jsx
function Fallback({ showDetails }) {
return /* @__PURE__ */ _("div", { class: Fallback_default.fallback }, /* @__PURE__ */ _("div", null, /* @__PURE__ */ _("p", null, "Something went wrong!"), showDetails && /* @__PURE__ */ _("p", null, "Please check logs for a message called ", /* @__PURE__ */ _("code", null, "reportPageException"))));
function Fallback({ showDetails, children }) {
return /* @__PURE__ */ _("div", { class: Fallback_default.fallback }, /* @__PURE__ */ _("div", null, /* @__PURE__ */ _("p", null, "Something went wrong!"), children, showDetails && /* @__PURE__ */ _("p", null, "Please check logs for a message called ", /* @__PURE__ */ _("code", null, "reportPageException"))));
}

// pages/duckplayer/app/components/Components.module.css
Expand Down
4 changes: 2 additions & 2 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2221,8 +2221,8 @@
};

// shared/components/Fallback/Fallback.jsx
function Fallback({ showDetails }) {
return /* @__PURE__ */ _("div", { class: Fallback_default.fallback }, /* @__PURE__ */ _("div", null, /* @__PURE__ */ _("p", null, "Something went wrong!"), showDetails && /* @__PURE__ */ _("p", null, "Please check logs for a message called ", /* @__PURE__ */ _("code", null, "reportPageException"))));
function Fallback({ showDetails, children }) {
return /* @__PURE__ */ _("div", { class: Fallback_default.fallback }, /* @__PURE__ */ _("div", null, /* @__PURE__ */ _("p", null, "Something went wrong!"), children, showDetails && /* @__PURE__ */ _("p", null, "Please check logs for a message called ", /* @__PURE__ */ _("code", null, "reportPageException"))));
}

// pages/duckplayer/app/components/Components.module.css
Expand Down
Loading

0 comments on commit e51efbc

Please sign in to comment.