Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 21, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@ampproject/remapping 2.1.2 -> 2.2.0 age adoption passing confidence dependencies minor
@ampproject/remapping 2.1.2 -> 2.2.0 age adoption passing confidence devDependencies minor
@bazel/concatjs 5.4.0 -> 5.4.1 age adoption passing confidence devDependencies patch
@bazel/jasmine 5.4.0 -> 5.4.1 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin 5.20.0 -> 5.21.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 5.20.0 -> 5.21.0 age adoption passing confidence devDependencies minor
actions/checkout v3.0.1 -> v3.0.2 age adoption passing confidence action patch
babel-loader 8.2.4 -> 8.2.5 age adoption passing confidence dependencies patch
babel-loader 8.2.4 -> 8.2.5 age adoption passing confidence devDependencies patch
build_bazel_rules_nodejs 5.4.0 -> 5.4.1 age adoption passing confidence http_archive patch
cacache 16.0.4 -> 16.0.7 age adoption passing confidence dependencies patch
cacache 16.0.4 -> 16.0.7 age adoption passing confidence devDependencies patch
esbuild 0.14.36 -> 0.14.38 age adoption passing confidence optionalDependencies patch
esbuild 0.14.36 -> 0.14.38 age adoption passing confidence devDependencies patch
esbuild-wasm 0.14.36 -> 0.14.38 age adoption passing confidence dependencies patch
esbuild-wasm 0.14.36 -> 0.14.38 age adoption passing confidence devDependencies patch
eslint (source) 8.13.0 -> 8.14.0 age adoption passing confidence devDependencies minor
express (source) 4.17.3 -> 4.18.0 age adoption passing confidence devDependencies minor
inquirer 8.2.2 -> 8.2.4 age adoption passing confidence dependencies patch
inquirer 8.2.2 -> 8.2.4 age adoption passing confidence devDependencies patch
postcss-preset-env 7.4.3 -> 7.4.4 age adoption passing confidence dependencies patch
postcss-preset-env 7.4.3 -> 7.4.4 age adoption passing confidence devDependencies patch
puppeteer 13.5.2 -> 13.7.0 age adoption passing confidence devDependencies minor
sass 1.50.1 -> 1.51.0 age adoption passing confidence dependencies minor
sass 1.50.1 -> 1.51.0 age adoption passing confidence devDependencies minor
terser (source) 5.12.1 -> 5.13.0 age adoption passing confidence dependencies minor
terser (source) 5.12.1 -> 5.13.0 age adoption passing confidence devDependencies minor
tslib (source) 2.3.1 -> 2.4.0 age adoption passing confidence dependencies minor
tslib (source) 2.3.1 -> 2.4.0 age adoption passing confidence devDependencies minor
verdaccio (source) 5.9.0 -> 5.10.0 age adoption passing confidence devDependencies minor

Release Notes

ampproject/remapping

v2.2.0

Compare Source

New Features

Internal

Full Changelog: ampproject/remapping@v2.1.2...v2.2.0

bazelbuild/rules_nodejs

v5.4.1

Compare Source

Bug Fixes
  • concatjs: resolve error with TypeScript 4.7 (#​3420) (1074231)
  • enable stardoc generation for rules that depend on ts in core (#​3394) (5d1c2ad)
  • builtin: fix a bug where mjs entry points were not added to (#​3406) (e24473c)
  • builtin: improve execution requirements for copy file operations (#​3413) (43e478d)
  • jasmine: allow cjs specs + add cjs/mjs tests (#​3401) (dd7e778)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.21.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-misused-promises] prioritize false returns when checking whether a function returns only void (#​4841) (ccadb60)
  • eslint-plugin: [no-namespace] fix false positive for exported namespaces when allowDeclarations=true (#​4844) (4e7c9be)
  • eslint-plugin: [space-infix-ops] fix no error when right type is function (#​4848) (d74d559)
Features
  • eslint-plugin: [parameter-properties] add rule to replace no-parameter-properties (#​4622) (88ed9ec)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.21.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

actions/checkout

v3.0.2

Compare Source

babel/babel-loader

v8.2.5

Compare Source

What's Changed

New Contributors

Full Changelog: babel/babel-loader@v8.2.4...v8.2.5

npm/cacache

v16.0.7

Compare Source

v16.0.6

Compare Source

v16.0.5

Compare Source

evanw/esbuild

v0.14.38

Compare Source

  • Further fixes to TypeScript 4.7 instantiation expression parsing (#​2201)

    This release fixes some additional edge cases with parsing instantiation expressions from the upcoming version 4.7 of TypeScript. Previously it was allowed for an instantiation expression to precede a binary operator but with this release, that's no longer allowed. This was sometimes valid in the TypeScript 4.7 beta but is no longer allowed in the latest version of TypeScript 4.7. Fixing this also fixed a regression that was introduced by the previous release of esbuild:

    Code TS 4.6.3 TS 4.7.0 beta TS 4.7.0 nightly esbuild 0.14.36 esbuild 0.14.37 esbuild 0.14.38
    a<b> == c<d> Invalid a == c Invalid a == c a == c Invalid
    a<b> in c<d> Invalid Invalid Invalid Invalid a in c Invalid
    a<b>>=c<d> Invalid Invalid Invalid Invalid a >= c Invalid
    a<b>=c<d> Invalid a < b >= c a = c a < b >= c a = c a = c
    a<b>>c<d> a < b >> c a < b >> c a < b >> c a < b >> c a > c a < b >> c

    This table illustrates some of the more significant changes between all of these parsers. The most important part is that esbuild 0.14.38 now matches the behavior of the latest TypeScript compiler for all of these cases.

v0.14.37

Compare Source

  • Add support for TypeScript's moduleSuffixes field from TypeScript 4.7

    The upcoming version of TypeScript adds the moduleSuffixes field to tsconfig.json that introduces more rules to import path resolution. Setting moduleSuffixes to [".ios", ".native", ""] will try to look at the the relative files ./foo.ios.ts, ./foo.native.ts, and finally ./foo.ts for an import path of ./foo. Note that the empty string "" in moduleSuffixes is necessary for TypeScript to also look-up ./foo.ts. This was announced in the TypeScript 4.7 beta blog post.

  • Match the new ASI behavior from TypeScript nightly builds (#​2188)

    This release updates esbuild to match some very recent behavior changes in the TypeScript parser regarding automatic semicolon insertion. For more information, see TypeScript issues #​48711 and #​48654 (I'm not linking to them directly to avoid Dependabot linkback spam on these issues due to esbuild's popularity). The result is that the following TypeScript code is now considered valid TypeScript syntax:

    class A<T> {}
    new A<number> /* ASI now happens here */
    if (0) {}
    
    interface B {
      (a: number): typeof a /* ASI now happens here */
      <T>(): void
    }

    This fix was contributed by @​g-plane.

eslint/eslint

v8.14.0

Compare Source

Features

  • ab6363d feat: Add rule no-constant-binary-expression (#​15296) (Jordan Eldredge)

Bug Fixes

  • 35fa1dd fix: allow project paths to have URL-encoded characters (#​15795) (Milos Djermanovic)
  • 413f1d5 fix: update astUtils.isDirectiveComment with globals and exported (#​15775) (Milos Djermanovic)

Build Related

Chores

  • 735458c chore: add static frontmatter to no-constant-binary-expression docs (#​15798) (Milos Djermanovic)
  • db28f2c chore: Add static frontmatter to docs (#​15782) (Nicholas C. Zakas)
  • 3bca59e chore: markdownlint autofix on commit (#​15783) (Nicholas C. Zakas)
expressjs/express

v4.18.0

Compare Source

===================

SBoudrias/Inquirer.js

v8.2.4

Compare Source

v8.2.3

Compare Source

  • Fix line wrapping with using with terminal links
  • Fix number prompt not working with negative numbers
csstools/postcss-plugins

v7.4.4

Compare Source

  • Updated @csstools/postcss-color-function to 1.1.0 (minor)
  • Updated @csstools/postcss-is-pseudo-class to 2.0.2 (patch)
  • Updated @csstools/postcss-oklab-function to 1.1.0 (minor)
  • Updated autoprefixer to 10.4.5 (patch)
  • Updated browserslist to 4.20.3 (patch)
  • Updated postcss-custom-properties to 12.1.7 (patch)
  • Updated postcss-lab-function to 4.2.0 (minor)
  • Updated postcss-nesting to 10.1.4 (patch)
  • Updated postcss-pseudo-class-any-link to 7.1.2 (patch)
puppeteer/puppeteer

v13.7.0

Compare Source

Features
Bug Fixes

v13.6.0

Compare Source

Features
Bug Fixes
13.5.2 (2022-03-31)
Bug Fixes
13.5.1 (2022-03-09)
Bug Fixes
sass/dart-sass

v1.51.0

Compare Source

  • Potentially breaking change: Change the order of maps returned by
    map.deep-merge() to match those returned by map.merge(). All keys that
    appeared in the first map will now be listed first in the same order they
    appeared in that map, followed by any new keys added from the second map.

  • Improve the string output of some AST nodes in error messages.

terser/terser

v5.13.0

Compare Source

  • All calls to eval() were removed (#​1171, #​1184)
  • source-map was updated to 0.8.0-beta.0 (#​1164)
  • NavigatorUAData was added to domprops to avoid property mangling (#​1166)
Microsoft/tslib

v2.4.0

Compare Source

This release includes the __classPrivateFieldIn helper as well as an update to __createBinding to reduce indirection between multiple re-exports.

verdaccio/verdaccio

v5.10.0

Compare Source

Features
🌞 Initial new set of variables to hide features (more to come)

Add set of new variables that allow hide different parts of the UI, buttons, footer or download tarballs. ℹ️ All are
enabled by default
.

##### web:
#####  login: true <-- already exist but worth the reminder
#####  showInfo: true
#####  showSettings: true
##### In combination with darkMode you can force specific theme
#####  showThemeSwitch: true
#####  showFooter: true
#####  showSearch: true
#####  showDownloadTarball: true

If you disable showThemeSwitch and force darkMode: true the local storage settings would be
ignored and force all themes to the one in the configuration file.

Future could be extended to other parts.

🚀 Raw button to display manifest package

A new experimental feature (enabled by default), button named RAW to be able navigate on the package manifest directly on the ui, kudos to react-json-view that allows an easy integration, not configurable yet until get more feedback.

##### web:
 showRaw: true <-- false to disable it

|
image
|
image
|

🧑‍🏭 Rework header buttons
  • The header has been rework, the mobile was looking broken. Now only displays login and logo (for screens smaller than 400px)
  • Removed info button in the header and moved to a dialog
  • Info dialog now contains more information about the project, license and the aid content for Ukrania 🇺🇦 now is inside of the info modal.
  • Separate settings and info to avoid collapse too much info (for mobile still need some work)
🔢 Others
  • Updated translations for several languages
🪄 What's next?
  • Next updates will be focused on improving the mobile/tablet layouts (does not look so great yet)
  • More updates on v6 (alpha release)
🐞 Bug Fixes

Configuration

📅 Schedule: "after 10pm every weekday,before 4am every weekday,every weekend" in timezone America/Tijuana.

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

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

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


  • If you want to rebase/retry this PR, click this checkbox.

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

@renovate renovate bot added action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release labels Apr 21, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 0838fe5 to 12e033e Compare April 25, 2022 16:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 16de307 to 4bea389 Compare April 27, 2022 17:36
@clydin clydin added this to the v14 milestone Apr 27, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 65b2a49 to 8d23db8 Compare April 28, 2022 13:35
@clydin clydin force-pushed the renovate/all-minor-patch branch from 056a82f to 69c0216 Compare April 28, 2022 18:15
renovate-bot and others added 2 commits April 28, 2022 15:00
@clydin clydin force-pushed the renovate/all-minor-patch branch from 69c0216 to f1c8faf Compare April 28, 2022 19:00
@dgp1130 dgp1130 merged commit 21622b8 into main Apr 29, 2022
@clydin clydin deleted the renovate/all-minor-patch branch May 6, 2022 18:19
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Jun 6, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: merge The PR is ready for merge by the caretaker target: minor This PR is targeted for the next minor release

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants