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: release main #1469

Merged
merged 1 commit into from
Jan 21, 2025
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
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/dm-core": "1.46.0",
"packages/dm-core-plugins": "1.57.0"
"packages/dm-core": "1.46.1",
"packages/dm-core-plugins": "1.58.0"
}
28 changes: 28 additions & 0 deletions packages/dm-core-plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,34 @@
* dependencies
* @development-framework/dm-core bumped from ^1.39.2 to ^1.39.3

## [1.58.0](https://github.com/equinor/dm-core-packages/compare/dm-core-plugins-v1.57.0...dm-core-plugins-v1.58.0) (2025-01-21)


### Features

* add itemMaxWidths attribute ([169d7c5](https://github.com/equinor/dm-core-packages/commit/169d7c58e9919ba1fc436434a480a077f69e88e3))


### Bug Fixes

* checkbox default value test ([7e8294a](https://github.com/equinor/dm-core-packages/commit/7e8294afdf5a95b60f55d20aae85df2666b2961d))
* checked not testable html attribute ([752763c](https://github.com/equinor/dm-core-packages/commit/752763c11031e872f880e5a6937c7051a8fb07ba))
* list test ([8d3c2bc](https://github.com/equinor/dm-core-packages/commit/8d3c2bc5a78305879b8262e18a19d877e1ef769c))
* tests ([2fafe9b](https://github.com/equinor/dm-core-packages/commit/2fafe9bf57e782a984b8ed6d4dbee42fefff4eb8))
* various datagrid bugs ([a303161](https://github.com/equinor/dm-core-packages/commit/a303161891b87a98d3e5f51c49c3f0bd6fe7646e))


### Code Refactoring

* linting and package update fixes ([ac6a6d4](https://github.com/equinor/dm-core-packages/commit/ac6a6d4bfaa7defec261731628c8e4ad486e3137))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @development-framework/dm-core bumped from ^1.46.0 to ^1.46.1

## [1.57.0](https://github.com/equinor/dm-core-packages/compare/dm-core-plugins-v1.56.0...dm-core-plugins-v1.57.0) (2024-06-26)


Expand Down
9 changes: 6 additions & 3 deletions packages/dm-core-plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@development-framework/dm-core-plugins",
"license": "MIT",
"version": "1.57.0",
"version": "1.58.0",
"main": "dist/index.js",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@development-framework/dm-core": "^1.46.0",
"@development-framework/dm-core": "^1.46.1",
"@equinor/eds-core-react": "^0.42.5",
"@equinor/eds-icons": "^0.21.0",
"@equinor/eds-tokens": "^0.9.2",
Expand Down Expand Up @@ -50,7 +50,10 @@
"react-dom": "^18.2.0",
"styled-components": "^6.1.13"
},
"files": ["blueprints", "dist"],
"files": [
"blueprints",
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "shx rm -rf dist",
Expand Down
13 changes: 13 additions & 0 deletions packages/dm-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.46.1](https://github.com/equinor/dm-core-packages/compare/dm-core-v1.46.0...dm-core-v1.46.1) (2025-01-21)


### Bug Fixes

* jest import ([1f57ff6](https://github.com/equinor/dm-core-packages/commit/1f57ff648d94212fea688ae32208f3848025d7ef))


### Code Refactoring

* linting and package update fixes ([ac6a6d4](https://github.com/equinor/dm-core-packages/commit/ac6a6d4bfaa7defec261731628c8e4ad486e3137))
* update packages ([c102e64](https://github.com/equinor/dm-core-packages/commit/c102e6407678982bfebf338c3644de9a6ed38494))

## [1.46.0](https://github.com/equinor/dm-core-packages/compare/dm-core-v1.45.1...dm-core-v1.46.0) (2024-06-19)


Expand Down
8 changes: 6 additions & 2 deletions packages/dm-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@development-framework/dm-core",
"version": "1.46.0",
"version": "1.46.1",
"license": "MIT",
"peerDependencies": {
"@types/react": "^18.2.20",
Expand Down Expand Up @@ -42,7 +42,11 @@
"ts-loader": "^9.5.1",
"typescript": "^5.7.2"
},
"files": ["dist", "src", "tsconfig.json"],
"files": [
"dist",
"src",
"tsconfig.json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand Down