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

Bump lodash._reinterpolate from 2.4.1 to 3.0.0 in /marklogic-data-hub-central/ui #42

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 21, 2022

Bumps lodash._reinterpolate from 2.4.1 to 3.0.0.

Release notes

Sourced from lodash._reinterpolate's releases.

3.0.0

lodash v3.0.0

After a little over a year & more than 2,000 commits we’re excited to release lodash v3.0.0. lodash follows semantic versioning so with this major release we’ve taken the opportunity to clean house & make some back-compat breaking changes. We’ll get into that in a bit, but first lets talk about all the cool things this release has to offer.

String methods

By popular demand we surveyed the utility landscape for a cross-section of string APIs to add to lodash. We settled on 17 string methods: _.camelCase, _.capitalize, _.deburr, _.endsWith, _.escapeRegExp, _.kebabCase, _.pad, _.padLeft, _.padRight, _.repeat, _.snakeCase, _.startsWith, _.trim, _.trimLeft, _.trimRight, _.trunc, & _.words

There’s familiar methods from ES5, like _.trim, & ES6, like _.endsWith, _.repeat, & _.startsWith, as well as some lesser known methods like _.deburr & _.kebabCase.

// trims whitespace like `String#trim` but
// also allows specifying characters to trim
_.trim('  abc  ');
// → 'abc'
_.trim('-_-abc-_-', '_-');
// → 'abc'
// works great with _.map too
_.map(['  foo  ', '  bar  '], _.trim);
// → ['foo', 'bar']
// deburr diacritical marks (http://en.wikipedia.org/wiki/Diacritic)
_.deburr('déjà vu');
// → 'deja vu'
// similar to a dasherize or slugify method
_.kebabCase('foo bar');
// → 'foo-bar'

Following casing rules with methods like _.camelCase, _.kebabCase, & _.snakeCase allows for strings to be transformed from say camel case, to kebab case, to snake case, & back again.

_.camelCase(_.snakeCase(_.kebabCase('fooBar')));
// → 'fooBar'

ES is our jam

Previous versions of lodash added _.assign, _.find, _.findIndex, & ES template delimiter support. In this release we’re taking our ES adoption up a notch by aligning _.includes, _.isFinite, & _.keys, supporting typed arrays in _.clone & _.isEqual, using Set & WeakMap for performance-gains, allowing Map & WeakMap to be used as _.memoize.Cache, & supporting ES modularized builds with lodash-cli.

Functional goodies

There’s lots of functional goodies in v3 like _.ary, _.curryRight, _.flow, _.rearg, & support for customizable argument placeholders in _.bind, _.bindKey, _.curry, _.curryRight, _.partial, & _.partialRight.

... (truncated)

Commits
  • a6257b5 Bump to v3.0.0.
  • 16ad7e5 Update docs. [ci skip]
  • 3e4e4f2 Rebuild lodash.
  • dc0c4fe Add tests for methods that check for functions and throw.
  • 0c050bb Add _.uniq test for arguments provided to iteratee.
  • 47a5b22 Ensure _.ary treats negative n values as 0.
  • ed61d0c Cleanup tests.
  • 8ff856e Use https in links where supported. [ci skip]
  • 93a607b Reduce test hint for stable sort to match the commented issue.
  • 7bec7ba Rename Lo-Dash references to lodash. [ci skip]
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)

@dependabot dependabot bot requested a review from rahulvudutala as a July 21, 2022 23:01
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 21, 2022
@SameeraPriyathamTadikonda SameeraPriyathamTadikonda force-pushed the develop branch 3 times, most recently from 2e182d4 to e1b89e9 Compare July 27, 2022 20:29
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/marklogic-data-hub-central/ui/develop/lodash._reinterpolate-3.0.0 branch from dfb21a8 to 71422bb Compare August 1, 2022 23:10
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/marklogic-data-hub-central/ui/develop/lodash._reinterpolate-3.0.0 branch 2 times, most recently from c52448d to 0a9996c Compare September 12, 2022 22:16
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/marklogic-data-hub-central/ui/develop/lodash._reinterpolate-3.0.0 branch from 0a9996c to 5f25145 Compare November 11, 2022 17:39
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Nov 11, 2022

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/marklogic-data-hub-central/ui/develop/lodash._reinterpolate-3.0.0 branch from 5f25145 to 69e4c81 Compare January 31, 2023 18:17
Bumps [lodash._reinterpolate](https://github.com/lodash/lodash) from 2.4.1 to 3.0.0.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@2.4.1...3.0.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant