Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/jest 26.0.15 -> 26.0.16 age adoption passing confidence
@typescript-eslint/eslint-plugin 4.8.0 -> 4.9.0 age adoption passing confidence
@typescript-eslint/parser 4.8.0 -> 4.9.0 age adoption passing confidence
cross-env 7.0.2 -> 7.0.3 age adoption passing confidence
eslint (source) 7.13.0 -> 7.15.0 age adoption passing confidence
eslint-plugin-prettier 3.1.4 -> 3.2.0 age adoption passing confidence
husky 4.3.0 -> 4.3.5 age adoption passing confidence
lint-staged 10.5.1 -> 10.5.3 age adoption passing confidence
prettier (source) 2.1.2 -> 2.2.1 age adoption passing confidence
ts-node 9.0.0 -> 9.1.1 age adoption passing confidence
typescript (source) 4.0.5 -> 4.1.2 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint

v4.9.0

Compare Source

Bug Fixes
  • eslint-plugin: [consistent-indexed-object-style] convert readonly index signature to readonly record (#​2798) (29428a4)
  • eslint-plugin: [consistent-type-imports] crash when using both default and namespace in one import (#​2778) (c816b84)
  • eslint-plugin: [explicit-module-boundary-types] ignore functions exported within typed object/array literals (#​2805) (73a63ee)
  • eslint-plugin: [no-use-before-define] allow class references if they're within a class decorator (#​2827) (050023a), closes #​2842
  • eslint-plugin: [triple-slash-reference] fix crash with external module reference (#​2788) (32b1b68)
  • scope-manager: fix assertion assignments not being marked as write references (#​2809) (fa68492), closes #​2804
  • typescript-estree: add default value for parserOptions.projectFolderIgnoreList and deduplicate resolved projects (#​2819) (bf904ec), closes #​2418 #​2814
Features

4.8.2 (2020-11-23)

Bug Fixes
  • eslint-plugin: [prefer-literal-enum-member] allow pure template literal strings (#​2786) (f3bf6a1)
  • typescript-estree: fix type-only regression for consumers not yet on TS 4.1 (#​2789) (50a46c6)

4.8.1 (2020-11-17)

Bug Fixes
  • eslint-plugin: [no-unnecessary-condition] false positive when array predicate returns unknown (#​2772) (111c244)
  • typescript-estree: parseWithNodeMaps returning empty maps (#​2773) (3e4a0ed)

v4.8.2

Compare Source

Bug Fixes
  • eslint-plugin: [prefer-literal-enum-member] allow pure template literal strings (#​2786) (f3bf6a1)
  • typescript-estree: fix type-only regression for consumers not yet on TS 4.1 (#​2789) (50a46c6)

v4.8.1

Compare Source

Bug Fixes
  • eslint-plugin: [no-unnecessary-condition] false positive when array predicate returns unknown (#​2772) (111c244)
  • typescript-estree: parseWithNodeMaps returning empty maps (#​2773) (3e4a0ed)
kentcdodds/cross-env

v7.0.3

Compare Source

Bug Fixes
  • add maintenance mode notice (fe80c84)
eslint/eslint

v7.15.0

Compare Source

v7.14.0

Compare Source

prettier/eslint-plugin-prettier

v3.2.0

Compare Source

  • Skip CI for eslint 6 + node 8 (#​364) (f8f08e4)
  • Turn off problematic rules in recommended config (prepare for next eslint-config-prettier version) (#​360) (a1e5591)
  • Create dependabot.yml (f58b6c7)
  • docs(README): fix prettier getFileInfo link (#​335) (5a690f1)
  • build(deps-dev): bump eslint-plugin-eslint-plugin from 2.2.2 to 2.3.0 (8614c45)
  • build(deps-dev): bump eslint from 7.3.0 to 7.3.1 (12d9ed8)
  • build(deps-dev): bump eslint from 7.2.0 to 7.3.0 (5a6f42e)
  • chore: update CI badge in readme (5012b66)
  • Use Github Actions for CI (#​305) (41eb64f)
typicode/husky

v4.3.5

Compare Source

v4.3.4

Compare Source

  • Throw error if husky install fails
  • Add workaround for npm 7 currently missing INIT_CWD environment variable

v4.3.3

Compare Source

v4.3.2

Compare Source

v4.3.1

Compare Source

okonet/lint-staged

v10.5.3

Compare Source

Bug Fixes

v10.5.2

Compare Source

Bug Fixes
prettier/prettier

v2.2.1

Compare Source

diff

Fix formatting for AssignmentExpression with ClassExpression (#​9741 by @​sosukesuzuki)
// Input
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.0
module.exports = class A extends (
  B
) {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.1
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};

v2.2.0

Compare Source

diff

🔗 Release Notes

TypeStrong/ts-node

v9.1.1

Compare Source

No code changes. We re-packed and republished v9.1.1, because the v9.1.0 package was broken due to an npm v7 bug.

Fixes

  • Published tarball had extra slashes in the paths of dist files. #​1172

v9.1.0

Compare Source

Added

  • Expose ts-node REPL via the API (#​1121) (MarcManiez)
  • Allow --typeCheck flag to override --transpileOnly flag specified in tsconfig.json (#​1142)

Changed

  • Rename interface Register to Service. It is still aliased as Register for backwards compatibility (#​1158)
  • Update code copied from node's ESM resolver to be the latest from node 15, to keep our ESM resolver's behavior as close as possible to vanilla node (#​1167)

Fixed

  • ESM resolver will preserve search portion of URL, used for cache busting (#​1165) @​frandiox
  • Fix ESM resolution of builtin modules on node >=14.13.1 (#​1136)
  • Recognize --es-module-specifier-resolution as an alias of --experimental-specifier-resolution for node 12 compatibility (#​1122) @​nguyensomniac

Docs

Misc

  • Changes to test matrix: Test against node 15; drop node 13 tests; remove 12.16 in favor of latest 12.x.x (#​1138, #​1148)
  • Improve codecov rules to remove misleading test failures (#​1159)
Microsoft/TypeScript

v4.1.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Renovate configuration

📅 Schedule: "every 2 weeks on Monday before 7am" in timezone Europe/Berlin.

🚦 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 10 times, most recently from c621d8d to 645bed9 Compare December 7, 2020 14:56
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 645bed9 to eacc0cb Compare December 7, 2020 17:34
@ff6347 ff6347 merged commit 0ba7f8b into master Dec 7, 2020
@ff6347 ff6347 deleted the renovate/dependencies-non-major branch December 7, 2020 17:35
@ff6347
Copy link
Member

ff6347 commented Jul 4, 2022

🎉 This PR is included in version 1.0.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

@ff6347 ff6347 added the released label Jul 4, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants