Skip to content

Commit

Permalink
📦 Publish SDKs (#3890)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @builder.io/react@8.0.8

### Patch Changes

- abe5cba: Fix: hydration mismatch error and reactivity of
Personalization Containers when `userAttributes` cookie value is
updated.

## @builder.io/sdk-angular@0.17.7

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
    import { setClientUserAttributes } from "@builder.io/sdk-angular";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

## @builder.io/sdk-react-nextjs@0.17.7

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
import { setClientUserAttributes } from "@builder.io/sdk-react-nextjs";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

## @builder.io/sdk-qwik@0.17.7

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
    import { setClientUserAttributes } from "@builder.io/sdk-qwik";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

## @builder.io/sdk-react@3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
    import { setClientUserAttributes } from "@builder.io/sdk-react";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

- abe5cba: Feat: support of Variant Containers or Block level
personalization

## @builder.io/sdk-react-native@3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
import { setClientUserAttributes } from "@builder.io/sdk-react-native";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

## @builder.io/sdk-solid@3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
    import { setClientUserAttributes } from "@builder.io/sdk-solid";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

## @builder.io/sdk-svelte@3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
    import { setClientUserAttributes } from "@builder.io/sdk-svelte";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

## @builder.io/sdk-vue@3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be
used to set and update Builder's user attributes cookie. This cookie is
used by Builder's Personalization Containers to decide which variant to
render.

    Usage example:

    ```ts
    import { setClientUserAttributes } from "@builder.io/sdk-vue";

    setClientUserAttributes({
      device: "tablet",
    });
    ```

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
builderio-bot and github-actions[bot] authored Feb 3, 2025
1 parent abe5cba commit 5562cc1
Show file tree
Hide file tree
Showing 28 changed files with 145 additions and 139 deletions.
15 changes: 0 additions & 15 deletions .changeset/beige-grapes-cheer.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/dirty-teachers-tell.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/giant-lobsters-retire.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/itchy-beers-marry.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/lazy-waves-greet.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/lemon-foxes-occur.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/nasty-ghosts-own.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/tidy-lions-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-hairs-march.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wise-singers-tickle.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @builder.io/react

## 8.0.8

### Patch Changes

- abe5cba: Fix: hydration mismatch error and reactivity of Personalization Containers when `userAttributes` cookie value is updated.

## 8.0.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@builder.io/react",
"version": "8.0.7",
"version": "8.0.8",
"description": "",
"keywords": [],
"main": "dist/builder-react.cjs.js",
Expand Down
16 changes: 16 additions & 0 deletions packages/sdks/output/angular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @builder.io/sdk-angular

## 0.17.7

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-angular";

setClientUserAttributes({
device: "tablet",
});
```

## 0.17.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/output/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@builder.io/sdk-angular",
"version": "0.17.6",
"version": "0.17.7",
"files": [
"lib"
],
Expand Down
16 changes: 16 additions & 0 deletions packages/sdks/output/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Builder.io Next.js SDK Changelog (@builder.io/sdk-react-nextjs)

## 0.17.7

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-react-nextjs";

setClientUserAttributes({
device: "tablet",
});
```

## 0.17.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/output/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/sdk-react-nextjs",
"description": "Builder.io RSC SDK for NextJS App Directory",
"version": "0.17.6",
"version": "0.17.7",
"homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/nextjs",
"repository": {
"type": "git",
Expand Down
16 changes: 16 additions & 0 deletions packages/sdks/output/qwik/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Builder.io Qwik SDK Changelog (@builder.io/sdk-qwik)

## 0.17.7

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-qwik";

setClientUserAttributes({
device: "tablet",
});
```

## 0.17.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/output/qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@builder.io/sdk-qwik",
"version": "0.17.6",
"version": "0.17.7",
"homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/qwik",
"repository": {
"type": "git",
Expand Down
16 changes: 16 additions & 0 deletions packages/sdks/output/react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Builder.io React Native SDK Changelog (@builder.io/sdk-react-native)

## 3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-react-native";

setClientUserAttributes({
device: "tablet",
});
```

## 3.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/output/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/sdk-react-native",
"description": "Builder.io SDK for React Native",
"version": "3.0.5",
"version": "3.0.6",
"homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/react-native",
"repository": {
"type": "git",
Expand Down
18 changes: 18 additions & 0 deletions packages/sdks/output/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Builder.io React SDK Changelog (@builder.io/sdk-react)

## 3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-react";

setClientUserAttributes({
device: "tablet",
});
```

- abe5cba: Feat: support of Variant Containers or Block level personalization

## 3.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/output/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/sdk-react",
"description": "Builder.io SDK for React",
"version": "3.0.5",
"version": "3.0.6",
"homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/react",
"type": "module",
"repository": {
Expand Down
16 changes: 16 additions & 0 deletions packages/sdks/output/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Builder.io Solid SDK Changelog (@builder.io/sdk-solid)

## 3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-solid";

setClientUserAttributes({
device: "tablet",
});
```

## 3.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/output/solid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@builder.io/sdk-solid",
"version": "3.0.5",
"version": "3.0.6",
"description": "",
"files": [
"dist",
Expand Down
16 changes: 16 additions & 0 deletions packages/sdks/output/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Builder.io Svelte SDK Changelog (@builder.io/sdk-svelte)

## 3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-svelte";

setClientUserAttributes({
device: "tablet",
});
```

## 3.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/output/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/sdk-svelte",
"description": "Builder.io SDK for Svelte",
"version": "3.0.5",
"version": "3.0.6",
"type": "module",
"files": [
"lib",
Expand Down
16 changes: 16 additions & 0 deletions packages/sdks/output/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Builder.io Vue SDK Changelog (@builder.io/sdk-vue)

## 3.0.6

### Patch Changes

- abe5cba: Feat: exports `setClientUserAttributes` helper that can be used to set and update Builder's user attributes cookie. This cookie is used by Builder's Personalization Containers to decide which variant to render.

Usage example:

```ts
import { setClientUserAttributes } from "@builder.io/sdk-vue";

setClientUserAttributes({
device: "tablet",
});
```

## 3.0.5

### Patch Changes
Expand Down
Loading

0 comments on commit 5562cc1

Please sign in to comment.