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): bump itertools from 1.7.1 to 2.1.2 in /test/fixtures/audit #163

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 10, 2023

Bumps itertools from 1.7.1 to 2.1.2.

Release notes

Sourced from itertools's releases.

v2.1.2

Improve tree-shakability when used in bundlers.

v2.1.1

  • Improve documentation
  • Fix a minor edge case bug in reduce() (when first argument in iterable is undefined, and the predicate function was not explicitly set)

v2.1.0

  • The following functions retain richer type information about their arguments:

    • ifilter()
    • filter()
    • partition()

    For example, TypeScript will now know the following:

    const items = [3, 'hi', -7, 'foo', 13];
    function isNum(value: unknown): value is number {
    return typeof value === 'number';
    }
    const numbers: number[] = filter(items, isNum); // ✅
    const [numbers, strings] = partition(items, isNum); // ✅
    //     ^^^^^^^  ^^^^^^^ string[]
    //     number[]

  • Add new find(iterable, pred) function, which is almost the same as first(iterable, pred) but behaves slightly more intuitive in the case where no predicate function is given.

  • Fix bug in chunked() with size=1

v2.0.0

Breaking changes:

  • Rewritten source code in TypeScript (instead of Flow)
  • Modern ESM and CJS dual exports (fully tree-shakable when using ESM)
  • Massively reduced bundle size
  • Targeted ES2015 (instead of ES5)
  • Support only TypeScript versions >= 4.3
  • Drop Flow support[^1]
  • Drop Node 10.x support
  • icompact, compact, and compactObject functions will now also remove null values, not only undefined

[^1]: I'm still open to bundling Flow types within this package, but only if that can be supported in a maintenance-free way, for example by using a script that will generate *.flow files from TypeScript source files. If someone can add support for that, I'm open to pull requests! 🙏

v2.0.0-beta1

Breaking changes:

... (truncated)

Changelog

Sourced from itertools's changelog.

v2.1.2

  • Improve tree-shakability when used in bundlers

v2.1.1

  • Improve documentation
  • Fix a bug in reduce() in a very small edge case

v2.1.0

The following functions retain richer type information about their arguments:

  • ifilter()
  • filter()
  • partition()

For example, TypeScript will now know the following:

const items = [3, 'hi', -7, 'foo', 13];
function isNum(value: unknown): value is number {
return typeof value === 'number';
}
const numbers: number[] = filter(items, isNum); // ✅
const [numbers, strings] = partition(items, isNum); // ✅
//     ^^^^^^^  ^^^^^^^ string[]
//     number[]

  • Add new find(iterable, pred) function, which is almost the same as first(iterable, pred) but behaves slightly more intuitive in the case where no predicate function is given.

  • Fix bug in chunked() with size=1

v2.0.0

Breaking changes:

  • Rewritten source code in TypeScript (instead of Flow)
  • Modern ESM and CJS dual exports (fully tree-shakable when using ESM)
  • Massively reduced bundle size
  • Targeted ES2015 (instead of ES5)
  • Support only TypeScript versions >= 4.3
  • Drop Flow support*
  • Drop Node 10.x support

... (truncated)

Commits
  • fb779ab Bump to 2.1.2
  • b098fe9 npm i
  • ad40788 Update changelog
  • 647aa2d Bump @​typescript-eslint/parser from 5.58.0 to 5.60.1 (#906)
  • 4aaaded Bump @​typescript-eslint/eslint-plugin from 5.58.0 to 5.60.1 (#907)
  • f4925e9 Upgrade eslint and vitest
  • 836dd7e Add "module" condition to clause, to assist bundlers with better tree-shaking
  • 1cc29a8 Install locally
  • 9ddc74d Bump prettier from 2.8.7 to 2.8.8 (#874)
  • c18c1e0 Bump fast-check from 3.8.0 to 3.10.0 (#894)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [itertools](https://github.com/nvie/itertools) from 1.7.1 to 2.1.2.
- [Release notes](https://github.com/nvie/itertools/releases)
- [Changelog](https://github.com/nvie/itertools/blob/main/CHANGELOG.md)
- [Commits](nvie/itertools@v1.7.1...v2.1.2)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 10, 2023
@fraxken fraxken merged commit af40923 into main Sep 1, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/test/fixtures/audit/itertools-2.1.2 branch September 1, 2023 23:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant