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): update deps to use caret range for versions #3496

Merged
merged 2 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/new-impalas-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@primer/react': minor
---

Update dependency ranges to use caret ranges instead of pinned versions

<!-- Changed components: _none_ -->
25 changes: 15 additions & 10 deletions contributor-docs/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,21 @@ For a full list of releases, visit our [releases](https://github.com/primer/reac

## Changes

| Category | Type of change | semver bump |
| :-------- | :------------------------------------------------------------------ | :---------- |
| Component | A component is added | `minor` |
| | A component is deprecated | `minor` |
| | A component is removed | `major` |
| Props | A prop is added | `minor` |
| | [The type of a prop is broadened](#the-type-of-a-prop-is-broadened) | `minor` |
| | [The type of a prop is narrowed](#the-type-of-a-prop-is-narrowed) | `major` |
| | A prop is deprecated | `minor` |
| | A prop is removed | `major` |
| Category | Type of change | semver bump |
| :-------- | :--------------------------------------------------------------------------- | :---------- |
| Component | A component is added | `minor` |
| | A component is deprecated | `minor` |
| | A component is removed | `major` |
| Props | A prop is added | `minor` |
| | [The type of a prop is broadened](#the-type-of-a-prop-is-broadened) | `minor` |
| | [The type of a prop is narrowed](#the-type-of-a-prop-is-narrowed) | `major` |
| | A prop is deprecated | `minor` |
| | A prop is removed | `major` |
| Package | A dependency is added | `minor` |
| | A dependency is removed and it does not affect the public API of the package | `minor` |
| | A dependency is removed and it does affect the public API of the package | `major` |
| | The version of a dependency is increased to a newer minor or patch version | `minor` |
| | The version of a dependency is increased to a newer major version | `major` |

## Reference

Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@
"@github/markdown-toolbar-element": "^2.1.0",
"@github/paste-markdown": "^1.4.0",
"@github/relative-time-element": "^4.1.2",
"@lit-labs/react": "1.1.1",
"@primer/behaviors": "1.3.4",
"@lit-labs/react": "^1.1.1",
"@primer/behaviors": "^1.3.4",
"@primer/octicons-react": "^19.3.0",
"@primer/primitives": "7.11.11",
"@primer/primitives": "^7.11.11",
"@react-aria/ssr": "^3.1.0",
"@styled-system/css": "^5.1.5",
"@styled-system/props": "^5.1.5",
Expand All @@ -115,11 +115,11 @@
"color2k": "^2.0.0",
"deepmerge": "^4.2.2",
"focus-visible": "^5.2.0",
"fzy.js": "0.4.1",
"fzy.js": "^0.4.1",
"history": "^5.0.0",
"lodash.isempty": "4.4.0",
"lodash.isobject": "3.0.2",
"react-intersection-observer": "9.4.3",
"lodash.isempty": "^4.4.0",
"lodash.isobject": "^3.0.2",
"react-intersection-observer": "^9.4.3",
"react-is": "^18.2.0",
"styled-system": "^5.1.5"
},
Expand Down