Skip to content

Commit

Permalink
Merge tag '0.21.1' into develop
Browse files Browse the repository at this point in the history
0.21.1
  • Loading branch information
Decipher committed Jul 3, 2023
2 parents b2f2243 + 04e692d commit a8585cd
Show file tree
Hide file tree
Showing 32 changed files with 188 additions and 120 deletions.
5 changes: 0 additions & 5 deletions .changeset/big-worms-punch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cyan-kings-wonder.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eighty-bikes-float.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lemon-oranges-marry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-bottles-bake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-weeks-pay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-clouds-collect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-lizards-pretend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/selfish-scissors-wink.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sharp-glasses-ring.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-owls-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wise-pots-walk.md

This file was deleted.

15 changes: 14 additions & 1 deletion packages/blocks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# druxt-blocks

## 0.17.0

### Minor Changes

- f6b4a664: feat(#578): updated missing vue component message with DruxtDevelTemplate tool.

### Patch Changes

- Updated dependencies [39af33a4]
- [email protected]
- [email protected]
- [email protected]

## 0.16.3

### Patch Changes
Expand Down Expand Up @@ -78,7 +91,7 @@
```js
import { DruxtBlocksRegionMixin } from "druxt-blocks";
export default {
mixins: [DruxtBlocksRegionMixin]
mixins: [DruxtBlocksRegionMixin],
};
```

Expand Down
8 changes: 4 additions & 4 deletions packages/blocks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "druxt-blocks",
"version": "0.16.3",
"version": "0.17.0",
"description": "Drupal Block and Block Region Druxt components.",
"keywords": [
"block",
Expand Down Expand Up @@ -44,9 +44,9 @@
"dependencies": {
"axios": "^0.27.2",
"drupal-jsonapi-params": "^2.1.0",
"druxt": "^0.20.0",
"druxt-entity": "^0.26.0",
"druxt-router": "^0.28.0"
"druxt": "^0.21.0",
"druxt-entity": "^0.27.0",
"druxt-router": "^0.29.0"
},
"optionalDependencies": {
"vue": "^2.7.10",
Expand Down
13 changes: 13 additions & 0 deletions packages/breadcrumb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# druxt-breadcrumb

## 0.17.0

### Minor Changes

- f6b4a664: feat(#578): updated component to support the DruxtDevelTemplate tool.

### Patch Changes

- Updated dependencies [e46a3290]
- [email protected]
- [email protected]
- [email protected]

## 0.16.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/breadcrumb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "druxt-breadcrumb",
"version": "0.16.0",
"version": "0.17.0",
"description": "Decoupled Router based Breadcrumb Druxt component.",
"keywords": [
"breadcrumb",
Expand Down Expand Up @@ -42,9 +42,9 @@
"templates"
],
"dependencies": {
"druxt": "^0.20.0",
"druxt-blocks": "^0.16.3",
"druxt-router": "^0.28.0"
"druxt": "^0.21.0",
"druxt-blocks": "^0.17.0",
"druxt-router": "^0.29.0"
},
"optionalDependencies": {
"vue": "^2.7.10",
Expand Down
40 changes: 27 additions & 13 deletions packages/druxt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# druxt

## 0.21.1

### Patch Changes

- e46a3290 by nx-alejandrolacasa: fix(#628): add prefix to included resources fetch

## 0.21.0

### Minor Changes

- f6b4a664: feat(#578): added DruxtDevelTemplate component to simplify template creation in development mode.
- f6b4a664: feat(#578): updated missing default slot message with DruxtDevelTemplate tool.
- 29905ff6: feat(#583): add Vue devtools plugin

## 0.20.0

### Minor Changes
Expand Down Expand Up @@ -148,9 +162,9 @@
export default {
druxt: {
proxy: {
api: true
}
}
api: true,
},
},
};
```

Expand All @@ -165,9 +179,9 @@
export default {
druxt: {
proxy: {
files: "default"
}
}
files: "default",
},
},
};
```

Expand Down Expand Up @@ -195,7 +209,7 @@
type,
id,
attributes: {},
relationships: {}
relationships: {},
});
```

Expand Down Expand Up @@ -302,9 +316,9 @@ Thanks to [d34dman](https://github.com/d34dman)
v-model="{
attributes: {
title: 'My Entity',
field_name: 'Value'
field_name: 'Value',
},
relationships: {}
relationships: {},
}"
/>
```
Expand Down Expand Up @@ -344,7 +358,7 @@ Thanks to [d34dman](https://github.com/d34dman)
import { DruxtModule } from "druxt";
export default {
name: "MyCustomDruxtModule",
extends: DruxtModule
extends: DruxtModule,
};
</script>
```
Expand Down Expand Up @@ -391,17 +405,17 @@ Thanks to [d34dman](https://github.com/d34dman)
<script>
export default {
data: () => ({
resource: null
resource: null,
}),
async fetch() {
const resource = await this.$store.dispatch("druxt/getResource", {
type: "node--article",
id: uuid,
query
query,
});
this.resource = resource;
}
},
};
</script>
```
Expand Down
2 changes: 1 addition & 1 deletion packages/druxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "druxt",
"version": "0.20.0",
"version": "0.21.1",
"description": "The Fully Decoupled Drupal Framework for Nuxt.js.",
"keywords": [
"cms",
Expand Down
35 changes: 27 additions & 8 deletions packages/entity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# druxt-entity

## 0.27.1

### Patch Changes

- 39af33a4: fix(#632): add passthrough attrs to DruxtField

## 0.27.0

### Minor Changes

- f6b4a664: feat(#578): updated missing schema/vue component message with DruxtDevelTemplate tool.

### Patch Changes

- Updated dependencies [e46a3290]
- [email protected]
- [email protected]
- [email protected]

## 0.26.1

### Patch Changes
Expand Down Expand Up @@ -174,10 +193,10 @@
include: ["field_media_image", "field_media_image.field_media_image"],
fields: [
["file--file", ["uri"]],
["media--image", []]
]
}
}
["media--image", []],
],
},
},
};
```

Expand Down Expand Up @@ -295,10 +314,10 @@
druxt: {
entity: {
components: {
fields: false
}
}
}
fields: false,
},
},
},
};
```

Expand Down
8 changes: 4 additions & 4 deletions packages/entity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "druxt-entity",
"version": "0.26.1",
"version": "0.27.1",
"description": "Drupal Display Mode powered Entity, Form and Field Druxt components.",
"keywords": [
"cms",
Expand Down Expand Up @@ -46,9 +46,9 @@
"dependencies": {
"deepmerge": "^4.2.2",
"drupal-jsonapi-params": "^2.1.0",
"druxt": "^0.20.0",
"druxt-router": "^0.28.0",
"druxt-schema": "^0.11.0"
"druxt": "^0.21.0",
"druxt-router": "^0.29.0",
"druxt-schema": "^0.11.1"
},
"publishConfig": {
"access": "public"
Expand Down
12 changes: 12 additions & 0 deletions packages/menu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# druxt-menu

## 0.19.0

### Minor Changes

- f6b4a664: feat(#578): updated components to support the DruxtDevelTemplate tool.

### Patch Changes

- Updated dependencies [e46a3290]
- [email protected]
- [email protected]

## 0.18.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/menu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "druxt-menu",
"version": "0.18.0",
"version": "0.19.0",
"description": "Drupal Menu and Menu item Druxt components, with support for the JSON:API Menu Items module.",
"keywords": [
"cms",
Expand Down Expand Up @@ -44,8 +44,8 @@
"dependencies": {
"deepmerge": "^4.2.2",
"drupal-jsonapi-params": "^2.1.0",
"druxt": "^0.20.0",
"druxt-blocks": "^0.16.3"
"druxt": "^0.21.0",
"druxt-blocks": "^0.17.0"
},
"optionalDependencies": {
"vue": "^2.7.10",
Expand Down
Loading

0 comments on commit a8585cd

Please sign in to comment.