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

fix(deps): update dependency regexparam to v2 - abandoned #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jun 14, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
regexparam ^1.0.1 -> ^2.0.0 age adoption passing confidence

Release Notes

lukeed/regexparam

v2.0.1

Compare Source

Patches

Chores


Full Changelog: lukeed/regexparam@v2.0.0...v2.0.1

v2.0.0

Compare Source

Breaking

  • Convert default export to named parse export: d439b9c
    Important: No functionality has changed! Simply -how- it's imported

    -- import regexparam from 'regexparam';
    ++ import { parse } from 'regexparam';
  • Require Node 8.x minimum runtime: bc36b93
    Previously required Node 6.x

Features

  • Support native ESM imports via "exports" mapping: f2604b2
    Note: This is potentially breaking for users of Node 13.0 thru 13.7 – upgrade! All of Node 13.x is officially obsolete!

    Conditional exports were defined, which means that CommonJS usage is still supported.

  • Added new inject function: 9c1a166, 3958c19, 3579e63
    Convenience function for injecting values into a route pattern string.
    Note: This is fully tree-shakable! Your bundle won't include it if you don't use it.

    import { inject } from 'regexparam';
    
    inject('/users/:id', {
      id: 'lukeed'
    }); //=> '/users/lukeed'
    
    inject('/movies/:title.mp4', {
      title: 'narnia'
    }); //=> '/movies/narnia.mp4'
    
    inject('/:foo/:bar?/:baz?', {
      foo: 'aaa'
    }); //=> '/aaa'
    
    inject('/:foo/:bar?/:baz?', {
      foo: 'aaa',
      baz: 'ccc'
    }); //=> '/aaa/ccc'
    
    inject('/posts/:slug/*', {
      slug: 'hello',
    }); //=> '/posts/hello'
    
    inject('/posts/:slug/*', {
      slug: 'hello',
      wild: 'x/y/z',
    }); //=> '/posts/hello/x/y/z'
    
    // Missing non-optional value
    // ~> keeps the pattern in output
    inject('/hello/:world', {
      abc: 123
    }); //=> '/hello/:world'

Chores


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 this update again.


  • If you want to rebase/retry this PR, check this box

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

@renovate
Copy link
Author

renovate bot commented Mar 24, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@renovate renovate bot changed the title fix(deps): update dependency regexparam to v2 fix(deps): update dependency regexparam to v2 - abandoned Dec 3, 2023
Copy link
Author

renovate bot commented Dec 3, 2023

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

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.

1 participant