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

feat: raise minimum version of Node to v14.17 #248

Merged
merged 13 commits into from Sep 17, 2021
Merged

feat: raise minimum version of Node to v14.17 #248

merged 13 commits into from Sep 17, 2021

Commits on Aug 20, 2021

  1. feat: raise minimum version of Node to v14.17 (#246)

    BREAKING CHANGE: the minimum required version of node is now v14.17 (#244)
    jpedroh committed Aug 20, 2021
    Copy the full SHA
    e7e56f6 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2021

  1. feat: esm (#247)

    BREAKING CHANGE: `@semantic-release/commit-analyzer` is now a native ES Module
    
    BREAKING CHANGE: When setting the `releaseRules` option to a path, the path must include the `.js` extension, and the file must be an ES Module itself, exporting an array as default
    
    Before:
    
    ```json
    {
      "plugins": [
        ["@semantic-release/commit-analyzer", {
          "preset": "angular",
          "releaseRules": "./config/release-rules"
        }],
        "@semantic-release/release-notes-generator"
      ]
    }
    ```
    ```js
    // File: config/release-rules.js
    module.exports = [
      {type: 'docs', scope: 'README', release: 'patch'},
      {type: 'refactor', scope: 'core-*', release: 'minor'},
      {type: 'refactor', release: 'patch'},
    ];
    ```
    
    After:
    
    ```json
    {
      "plugins": [
        ["@semantic-release/commit-analyzer", {
          "preset": "angular",
          "releaseRules": "./config/release-rules.js"
        }],
        "@semantic-release/release-notes-generator"
      ]
    }
    ```
    ```js
    // File: config/release-rules.js
    export default [
      {type: 'docs', scope: 'README', release: 'patch'},
      {type: 'refactor', scope: 'core-*', release: 'minor'},
      {type: 'refactor', release: 'patch'},
    ];
    ```
    
    Co-authored-by: Gregor Martynus <39992+gr2m@users.noreply.github.com>
    jpedroh and gr2m committed Aug 21, 2021
    Copy the full SHA
    a773c8b View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2021

  1. Copy the full SHA
    af37269 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2021

  1. chore(deps): lock file maintenance (#243)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    d8bf043 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    117fbc1 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update dependency sinon to v11.1.2 (#254)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    4e73550 View commit details
    Browse the repository at this point in the history
  4. chore(deps): update dependency conventional-changelog-conventionalcom…

    …mits to v4.6.0 (#255)
    
    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    04176ff View commit details
    Browse the repository at this point in the history
  5. chore(deps): update dependency semantic-release to v17.4.7 (#256)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    296ba26 View commit details
    Browse the repository at this point in the history
  6. chore(deps): lock file maintenance (#251)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    aa00ddb View commit details
    Browse the repository at this point in the history
  7. chore(deps): lock file maintenance (#257)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    99b4a87 View commit details
    Browse the repository at this point in the history
  8. chore(deps): lock file maintenance (#258)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    8827721 View commit details
    Browse the repository at this point in the history
  9. chore(deps): update dependency conventional-changelog-conventionalcom…

    …mits to v4.6.1 (#259)
    
    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    98d0f4b View commit details
    Browse the repository at this point in the history
  10. chore(deps): lock file maintenance (#264)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    2 people authored and travi committed Sep 17, 2021
    Copy the full SHA
    1395187 View commit details
    Browse the repository at this point in the history