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 #87

Merged
merged 3 commits into from
Apr 4, 2022
Merged

chore(deps): update all dependencies #87

merged 3 commits into from
Apr 4, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@changesets/changelog-github 0.4.2 -> 0.4.4 age adoption passing confidence devDependencies patch
@changesets/cli 2.20.0 -> 2.22.0 age adoption passing confidence devDependencies minor
@types/jest 27.4.0 -> 27.4.1 age adoption passing confidence devDependencies patch
actions/checkout v2 -> v3 age adoption passing confidence action major
actions/setup-node v2 -> v3 age adoption passing confidence action major
prettier (source) 2.5.1 -> 2.6.2 age adoption passing confidence devDependencies minor
ts-jest (source) 27.1.3 -> 27.1.4 age adoption passing confidence devDependencies patch
ts-node (source) 10.5.0 -> 10.7.0 age adoption passing confidence devDependencies minor
typescript (source) 4.5.5 -> 4.6.3 age adoption passing confidence devDependencies minor

Release Notes

changesets/changesets (@​changesets/changelog-github)

v0.4.4

Compare Source

Patch Changes

v0.4.3

Compare Source

Patch Changes
changesets/changesets (@​changesets/cli)

v2.22.0

Compare Source

Minor Changes
  • #​768 c87eba6 Thanks @​rohit-gohri! - Allow "commit" option to be more configurable. You can now point to a module (using a module name or a relative path) that might contain getAddMessage and/or getVersionMessage. This allows you to configure how the commit message is generated, if [skip ci] gets included, etc.
Patch Changes
  • #​776 ad7506d Thanks @​janosh! - changeset init will now configure baseBranch: "main" in the .changeset/config.json as the default value.

v2.21.1

Compare Source

Patch Changes

v2.21.0

Compare Source

Minor Changes
  • #​690 27a5a82 Thanks @​Andarist! - Added a new .changeset/config.json option: fixed. It can be used to group packages that should always be released together. If any package from a group is going to be released then all packages from that group will be released together (with the same version).

    This is similar to what people often know from Lerna as this is how their fixed/locked mode works.

Patch Changes
  • #​706 0812858 Thanks @​Andarist! - Fixed an issue with "none" releases causing package versions being bumped during snapshot releases. In addition to when you create "none" release types explicitly Changesets might create them implicitly in some situations, for example under some circumstances this issue caused snapshot releases to be created sometimes for ignored packages.
  • #​703 15c461d Thanks @​Andarist! - Fixed an issue with * dependency ranges not being replaced in premode. Those have to replaced with exact versions because prereleases don't satisfy wildcard ranges. A published prerelease package with such dependency range left untouched won't install correct prerelease dependency version.
  • #​749 d14cf79 Thanks @​Andarist! - Fixed an issue that caused created CHANGELOG files not being formatted in the same way as the updated ones (this could happen when calling changeset version for the very first time for a package).
  • #​751 59c7ebc Thanks @​Rugvip! - Fixed an issue where dependent packages would sometimes not get bumped properly when exiting prerelease mode.
actions/checkout

v3

Compare Source

actions/setup-node

v3

Compare Source

prettier/prettier

v2.6.2

Compare Source

diff

Fix LESS/SCSS format error (#​12536 by @​fisker)
// Input
.background-gradient(@​cut) {
    background: linear-gradient(
        to right,
        @​white 0%,
        @​white (@​cut - 0.01%),
        @​portal-background @​cut,
        @​portal-background 100%
    );
}

// Prettier 2.6.1
TypeError: Cannot read properties of undefined (reading 'endOffset')

// Prettier 2.6.2
.background-gradient(@​cut) {
  background: linear-gradient(
    to right,
    @​white 0%,
    @​white (@​cut - 0.01%),
    @​portal-background @​cut,
    @​portal-background 100%
  );
}
Update meriyah to fix several bugs (#​12567 by @​fisker, fixes in meriyah by @​3cp)

Fixes bugs when parsing following valid code:

foo(await bar());
const regex = /.*/ms;
const element = <p>{/w/.test(s)}</p>;
class A extends B {
  #privateMethod() {
    super.method();
  }
}

v2.6.1

Compare Source

diff

Ignore loglevel when printing information (#​12477 by @​fisker)

v2.6.0

Compare Source

prettier --loglevel silent --find-config-path index.js

kulshekhar/ts-jest

v27.1.4

Compare Source

Bug Fixes
TypeStrong/ts-node

v10.7.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1680

Added

  • Adds --esm flag, option, and ts-node-esm binary (#​1258, #​1655)
    • Enables full esm support; no need for --loader nor NODE_OPTIONS
    • Use shebang #!/usr/bin/env ts-node-esm, run ts-node --esm, or add to your tsconfig.json: "ts-node": {"esm": true}

Changed

Fixed

  • Fixed bug where "compiler", "transpiler", and swc backend would not resolve relative to the tsconfig.json that declared them (#​1662, #​1655)
    • Enables reusable tsconfig.json shared via node module to include necessary dependencies

https://github.com/TypeStrong/ts-node/milestone/11

v10.6.0

Compare Source

Questions about this release? Ask in the official discussion thread: #​1666

Added

  • Adds workaround for extensionless entrypoints with ESM loader (#​1649, #​1654)
    • You can now combine tools such as mocha with --loader ts-node/esm, where previously node would throw [ERR_UNKNOWN_FILE_EXTENSION]
    • node has a bug where combining --loader with an extensionless entrypoint causes this error nodejs/node#​33226
    • Some tools, for example mocha, have an extensionless entrypoint. (source, source)
    • Combining NODE_OPTIONS=--loader ts-node/esm with these tools causes this error. mochajs/mocha#​4645
    • node intends to fix this bug in a future release: nodejs/node#​41711
    • In the interim, we have implemented a workaround in ts-node.
  • Adds support for target "ES2022" in moduleTypes overrides (#​1650)

Fixed

  • Fixed bug where --swc and other third-party transpilers did not respect moduleTypes overrides (#​1651, #​1652, #​1660)
  • Fixed bug where node flags were not preserved correctly in process.execArgv (#​1657, #​1658)
    • This affected child_process.fork(), since it uses process.execArgv to create a similar child runtime.
    • With this fix, child_process.fork() will preserve both node flags and ts-node hooks.
  • Fixed compatibility TypeScript 4.7's API changes (#​1647, #​1648)

https://github.com/TypeStrong/ts-node/milestone/9

Microsoft/TypeScript

v4.6.3

Compare Source

This release includes fixes for

For the complete list of fixed issues, check out the

Downloads are available on:

v4.6.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:


Configuration

📅 Schedule: "before 3am on the first day of the month" (UTC).

🚦 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.

@changeset-bot
Copy link

changeset-bot bot commented Mar 1, 2022

🦋 Changeset detected

Latest commit: 3e5f744

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
@p-j/geocodejson-ban Patch
@p-j/geocodejson-googleapis Patch
@p-j/geocodejson-opencage Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@codecov
Copy link

codecov bot commented Mar 1, 2022

Codecov Report

Merging #87 (8b550cc) into main (56a3d7d) will not change coverage.
The diff coverage is n/a.

❗ Current head 8b550cc differs from pull request most recent head 3e5f744. Consider uploading reports for the commit 3e5f744 to get more accurate results

@@           Coverage Diff           @@
##             main      #87   +/-   ##
=======================================
  Coverage   77.77%   77.77%           
=======================================
  Files           6        6           
  Lines         153      153           
  Branches       52       52           
=======================================
  Hits          119      119           
  Misses         30       30           
  Partials        4        4           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 873d674...3e5f744. Read the comment docs.

@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 2b38583 to 5bfad62 Compare March 6, 2022 07:31
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 5fdbfea to 97aad64 Compare March 27, 2022 11:35
@p-j p-j merged commit 0c957c7 into main Apr 4, 2022
@p-j p-j deleted the renovate/all branch April 4, 2022 18:51
@github-actions github-actions bot mentioned this pull request Apr 4, 2022
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.

2 participants