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

chore(deps): update all dependencies #1128

Merged
merged 1 commit into from
Oct 9, 2023
Merged

chore(deps): update all dependencies #1128

merged 1 commit into from
Oct 9, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 26, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@nrwl/tao (source) 16.9.0 -> 16.10.0 age adoption passing confidence devDependencies minor
@nx/cypress (source) 16.9.0 -> 16.10.0 age adoption passing confidence devDependencies minor
@nx/workspace (source) 16.9.0 -> 16.10.0 age adoption passing confidence devDependencies minor
mcr.microsoft.com/vscode/devcontainers/typescript-node 0-16-buster -> 1-16-buster age adoption passing confidence final major
nx (source) 16.9.0 -> 16.10.0 age adoption passing confidence devDependencies minor
rollup (source) ^3.28.1 -> ^4.0.0 age adoption passing confidence devDependencies major

Release Notes

nrwl/nx (@​nrwl/tao)

v16.10.0

Compare Source

16.10.0
🚀 Features
🩹 Fixes
  • angular: throw an error when generating a component and the specified module can't be found (#​19324)
  • angular: remove leftover code causing duplicated route config when generating a library (#​19326)
  • angular: update tsconfig included and excluded files when generating a library secondary entry point (#​19366)
  • angular: do not set less math option in ng-packagr executors (#​19402)
  • core: generate permissions on github ci workflow (#​19357)
  • core: set prerelease on Github request for nx release changelog (#​19343)
  • core: include client env when hashing tasks in the daemon (#​19422)
  • core: adjust how findMatchingProjects works when provided additive patterns after an exclusion to be more intuitive (#​19295)
  • core: cache runtime hashes with the env as part of the key (#​19426)
  • core: add vue to cnw implicitDependencies (#​19443)
  • linter: fix rule typings (#​19294)
  • linter: add schema for nx plugin checks rule (#​19447)
  • misc: properly add extra dependencies to packages (#​19334)
  • misc: fixing discord link in npm page (#​19372)
  • misc: report should not throw when no nx.json file is present (#​19333)
  • repo: ensure cypress is installed on agents (#​19430)
  • testing: install devkit when init playwright (#​19406)
  • web: disable tsnode service after loading config (#​19387)
❤️ Thank You

v16.9.1

Compare Source

16.9.1

🩹 Fixes
  • angular: throw an error when generating a component and the specified module can't be found (#​19324)
  • misc: properly add extra dependencies to packages (#​19334)
❤️ Thank You
  • Jason Jean <jasonjean1993@​gmail.com>
  • Leosvel Pérez Espinosa @​leosvelperez
rollup/rollup (rollup)

v4.0.2

Compare Source

2023-10-06

Bug Fixes
  • Fix annotation detection logic to not fail when a non-ASCII character precedes a double underscore (#​5178)
Pull Requests

v4.0.1

Compare Source

2023-10-06

Bug Fixes
  • Do not panic on trailing semicolons after class methods (#​5173)
  • Add artifact for arm64 linux musl target (#​5176)
Pull Requests

v4.0.0

Compare Source

2023-10-05

BREAKING CHANGES
General Changes
  • The minimal required Node version is now 18.0.0 (#​5142)
  • The browser build now relies on a WASM artifact that needs to be provided as well (#​5073)
  • The NodeJS build now relies on an optional native binary; for unsupported platforms, users can use the @rollup/wasm-node package that has the same interface as Rollup but relies on WASM artifacts (#​5073)
  • The "with" syntax for import attributes is not yet supported, awaiting support in SWC (#​5073)
  • The INVALID_IMPORT_ASSERTION error code has been replaced with INVALID_IMPORT_ATTRIBUTE (#​5073)
  • Rollup will now warn for @__PURE__ and @__NO_SIDE_EFFECTS__ annotations in invalid locations (#​5165)
  • If an entry module starts with a shebang comment #!..., this comment will be prepended to the output for es and cjs formats (#​5163)
  • File hashes will now use url-safe base64 encoded hashes (#​5155)
  • The maximum hash length has been reduced to 22 characters (#​5155)
  • The RollupWarning type has been removed in favor of the RollupLog type (#​5147)
Changes to Rollup Options
  • Acorn plugins are no longer supported, the acornInjectPlugins option has been removed (#​5073)
  • The acorn option has been removed (#​5073)
  • output.externalImportAssertions has been deprecated in favor of output.externalImportAttributes (#​5073)
  • inlineDynamicImports, manualChunks and preserveModules have been removed on input option level: Please use the corresponding output options of the same names (#​5143)
  • Removed output options (#​5143):
    • output.experimentalDeepDynamicChunkOptimization: This option is no longer needed as Rollup now always runs the full chunking algorithm
    • output.dynamicImportFunction: Use the renderDynamicImport plugin hook instead
    • output.namespaceToStringTag: Use output.generatedCode.symbols instead
    • output.preferConst: Use output.generatedCode.constBindings instead
Plugin API Changes
  • For this.resolve, the default of the skipSelf option is now true (#​5142)
  • this.parse now only supports the allowReturnOutsideFunction option for now (#​5073)
  • Import assertions now use the new import attribute AST structure (#​5073)
  • "assertions" have been replaced with "attributes" in various places of the plugin interface (#​5073)
  • If the import of a module id is handled by the load hook of a plugin, rollup.watch no longer watches the actual file if the module id corresponds to a real path; if this is intended, then the plugin is responsible for calling this.addWatchFile for any dependency files (#​5150)
  • The normalized input options provided by buildStart and other hooks no longer contain an onwarn handler; plugins should use onLog instead (#​5147)
  • this.moduleIds has been removed from the plugin context: Use this.getModuleIds() instead (#​5143)
  • The hasModuleSideEffects flag has been removed from the ModuleInfo returned by thi s.getModuleInfo(): Use moduleSideEffects on the ModuleInfo instead (#​5143)
Features
  • Improve parsing speed by switching to a native SWC-based parser (#​5073)
  • Rollup will now warn for @__PURE__ and @__NO_SIDE_EFFECTS__ annotations in invalid locations (#​5165)
  • The parser is now exposed as a separate export parseAst (#​5169)
Bug Fixes
  • Rollup no longer tries to watch virtual files if their name corresponds to an actual file name; instead, plugins handle watching via this.addWatchFile() (#​5150)
Pull Requests

v3.29.4

Compare Source

2023-09-28

Bug Fixes
  • Fix static analysis when an exported function uses callbacks (#​5158)
Pull Requests

v3.29.3

Compare Source

2023-09-24

Bug Fixes
  • Fix a bug where code was wrongly tree-shaken after mutating function parameters (#​5153)
Pull Requests

v3.29.2

Compare Source

2023-09-15

Bug Fixes
  • Export TreeshakingPreset type (#​5131)
Pull Requests

v3.29.1

Compare Source

2023-09-10

Bug Fixes
  • Fix time measurement of plugin hooks in watch mode (#​5114)
  • Ensure accessing document.currentScript in import.meta.url returns correct results (#​5118)
Pull Requests

v3.29.0

Compare Source

2023-09-06

Features
  • Add output.sourcemapFileNames option (#​5105)
  • Add generic type parameter for api to Plugin type (#​5112)
Bug Fixes
  • Ensure mutations of CustomEvent details are tracked (#​5123)
Pull Requests

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@nx-cloud
Copy link

nx-cloud bot commented Sep 26, 2023

☁️ Nx Cloud Report

CI is running/has finished running commands for commit 267d06f. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this branch


✅ Successfully ran 3 targets

Sent with 💌 from NxCloud.

@cypress
Copy link

cypress bot commented Sep 26, 2023

Passing run #543 ↗︎

0 75 0 0 Flakiness 0

Details:

Merge 267d06f into effd856...
Project: Default Project Commit: c3a0182b96 ℹ️
Status: Passed Duration: 01:51 💡
Started: Oct 6, 2023 4:10 PM Ended: Oct 6, 2023 4:12 PM

Review all test suite changes for PR #1128 ↗︎

@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from a3d59e0 to daa025e Compare October 6, 2023 14:17
@Saul-Mirone Saul-Mirone merged commit a724272 into main Oct 9, 2023
10 checks passed
@Saul-Mirone Saul-Mirone deleted the renovate/all branch October 9, 2023 10:38
@cypress
Copy link

cypress bot commented Oct 9, 2023

Passing run #544 ↗︎

0 75 0 0 Flakiness 0

Details:

chore(deps): update all dependencies (#1128)
Project: Default Project Commit: a724272d89
Status: Passed Duration: 01:43 💡
Started: Oct 9, 2023 10:41 AM Ended: Oct 9, 2023 10:43 AM

Review all test suite changes for PR #1128 ↗︎

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant