Skip to content
This repository was archived by the owner on Jun 7, 2022. It is now read-only.

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 1, 2020

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
uuid ^7.0.2 -> ^8.3.2 age adoption passing confidence
@types/uuid 7.0.0 -> 8.3.4 age adoption passing confidence

Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.


Release Notes

uuidjs/uuid

v8.3.2

Compare Source

v8.3.1

Compare Source

v8.3.0

Compare Source

Features

v8.2.0

Compare Source

Features
Bug Fixes

v8.1.0

Compare Source

Features
Bug Fixes

v8.0.0

Compare Source

⚠ BREAKING CHANGES
  • For native ECMAScript Module (ESM) usage in Node.js only named exports are exposed, there is no more default export.

    -import uuid from 'uuid';
    -console.log(uuid.v4()); // -> 'cd6c3b08-0adc-4f4b-a6ef-36087a1c9869'
    +import { v4 as uuidv4 } from 'uuid';
    +uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'
  • Deep requiring specific algorithms of this library like require('uuid/v4'), which has been deprecated in uuid@7, is no longer supported.

    Instead use the named exports that this module exports.

    For ECMAScript Modules (ESM):

    -import uuidv4 from 'uuid/v4';
    +import { v4 as uuidv4 } from 'uuid';
    uuidv4();

    For CommonJS:

    -const uuidv4 = require('uuid/v4');
    +const { v4: uuidv4 } = require('uuid');
    uuidv4();
Features
Bug Fixes
  • add CommonJS syntax example to README quickstart section (#​417) (e0ec840)
7.0.3 (2020-03-31)
Bug Fixes
7.0.2 (2020-03-04)
Bug Fixes
7.0.1 (2020-02-25)
Bug Fixes

v7.0.3

Compare Source


Configuration

📅 Schedule: Branch creation - "on the 1st through 7th day of the month" in timezone America/Los_Angeles, 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

@renovate renovate bot force-pushed the renovate/uuid-8.x branch 2 times, most recently from 9f77774 to 1a5c58f Compare May 20, 2020 19:07
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 1a5c58f to c2062c9 Compare June 23, 2020 21:12
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from c2062c9 to 86aa736 Compare July 27, 2020 19:08
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 86aa736 to e1c70e6 Compare August 5, 2020 03:59
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from e1c70e6 to b35d229 Compare August 12, 2020 06:21
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from b35d229 to 019226c Compare October 4, 2020 15:54
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 019226c to 340ce0a Compare November 27, 2020 05:51
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 340ce0a to 7bdf63b Compare December 8, 2020 21:49
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 7bdf63b to 96c41c7 Compare May 29, 2021 04:21
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 96c41c7 to 46b6d89 Compare July 2, 2021 18:46
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 46b6d89 to 0292cee Compare November 17, 2021 23:28
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 0292cee to 61a6302 Compare January 6, 2022 08:34
@renovate renovate bot force-pushed the renovate/uuid-8.x branch from 61a6302 to 7e2c3c3 Compare June 3, 2022 14:18
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants