Skip to content

Commit

Permalink
Version Packages (beta)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 9, 2024
1 parent 485b840 commit cbf1326
Show file tree
Hide file tree
Showing 15 changed files with 89 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@
"cyan-walls-grin",
"eleven-pans-poke",
"fluffy-jeans-breathe",
"giant-lobsters-type",
"great-llamas-buy",
"late-olives-change",
"long-falcons-sing",
"lucky-llamas-mix",
"mean-pots-glow",
"moody-fireants-remain",
"nasty-bobcats-visit",
"red-yaks-occur",
"six-dragons-check",
"stupid-horses-ring",
"sweet-days-itch",
"tasty-ads-guess",
"three-singers-taste",
Expand Down
7 changes: 7 additions & 0 deletions packages/build-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @responsive-image/build-utils

## 1.0.0-beta.3

### Patch Changes

- Updated dependencies [[`7cef8c6`](https://github.com/simonihmig/responsive-image/commit/7cef8c6a743c9ce6fa3879378705437cff11a22c)]:
- @responsive-image/core@1.0.0-beta.3

## 1.0.0-beta.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/build-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@responsive-image/build-utils",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"description": "Internal package for shared build-related code as part of the ResponsiveImage project",
"repository": "https://github.com/simonihmig/responsive-image",
"license": "MIT",
Expand Down
21 changes: 21 additions & 0 deletions packages/cdn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @responsive-image/cdn

## 1.0.0-beta.4

### Major Changes

- [#782](https://github.com/simonihmig/responsive-image/pull/782) [`1f3b3d9`](https://github.com/simonihmig/responsive-image/commit/1f3b3d9f952047b5bd3e8a9b67598b50a8ea1a64) Thanks [@simonihmig](https://github.com/simonihmig)! - Drop jpg, png as default image cdn formats

- [#783](https://github.com/simonihmig/responsive-image/pull/783) [`fe2fe11`](https://github.com/simonihmig/responsive-image/commit/fe2fe11727685a6726034b00dc0cd108d1d54e3f) Thanks [@simonihmig](https://github.com/simonihmig)! - Rename image CDN functions, dropping -provider suffix

### Minor Changes

- [#773](https://github.com/simonihmig/responsive-image/pull/773) [`b09549c`](https://github.com/simonihmig/responsive-image/commit/b09549cac9796bac0033ad5ff8e5f05e616989f3) Thanks [@simonihmig](https://github.com/simonihmig)! - Add support for Netlify image CDN

### Patch Changes

- [#771](https://github.com/simonihmig/responsive-image/pull/771) [`b5dacfe`](https://github.com/simonihmig/responsive-image/commit/b5dacfebb10224f60bc763105c0a212c313f67b9) Thanks [@simonihmig](https://github.com/simonihmig)! - Remove FastBoot related workarounds in `imgix` image CDN provider

Instead of working around a [known issue](https://github.com/ember-fastboot/ember-cli-fastboot/issues/816) in the actual runtime code, users need to add a FastBoot config to expose needed globals like `URL` or `URLSearchParams`, as documented in the [Ember guide](https://responsive-image.dev/frameworks/ember#fastboot).

- Updated dependencies [[`7cef8c6`](https://github.com/simonihmig/responsive-image/commit/7cef8c6a743c9ce6fa3879378705437cff11a22c)]:
- @responsive-image/core@1.0.0-beta.3

## 1.0.0-beta.3

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cdn/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@responsive-image/cdn",
"version": "1.0.0-beta.3",
"version": "1.0.0-beta.4",
"description": "Support for loading remote images from Image CDNs as part of the ResponsiveImage project",
"repository": "https://github.com/simonihmig/responsive-image",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @responsive-image/core

## 1.0.0-beta.3

### Patch Changes

- [#794](https://github.com/simonihmig/responsive-image/pull/794) [`7cef8c6`](https://github.com/simonihmig/responsive-image/commit/7cef8c6a743c9ce6fa3879378705437cff11a22c) Thanks [@simonihmig](https://github.com/simonihmig)! - Add resolveImage utility

## 1.0.0-beta.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@responsive-image/core",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"description": "Internal core functions and config for the ResponsiveImage project",
"repository": "https://github.com/simonihmig/responsive-image",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions packages/ember/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# ember-responsive-image

## 1.0.0-beta.5

### Major Changes

- [#771](https://github.com/simonihmig/responsive-image/pull/771) [`b5dacfe`](https://github.com/simonihmig/responsive-image/commit/b5dacfebb10224f60bc763105c0a212c313f67b9) Thanks [@simonihmig](https://github.com/simonihmig)! - Remove FastBoot related workarounds in `imgix` image CDN provider

Instead of working around a [known issue](https://github.com/ember-fastboot/ember-cli-fastboot/issues/816) in the actual runtime code, users need to add a FastBoot config to expose needed globals like `URL` or `URLSearchParams`, as documented in the [Ember guide](https://responsive-image.dev/frameworks/ember#fastboot).

- [#783](https://github.com/simonihmig/responsive-image/pull/783) [`fe2fe11`](https://github.com/simonihmig/responsive-image/commit/fe2fe11727685a6726034b00dc0cd108d1d54e3f) Thanks [@simonihmig](https://github.com/simonihmig)! - Rename image CDN functions, dropping -provider suffix

### Minor Changes

- [#773](https://github.com/simonihmig/responsive-image/pull/773) [`b09549c`](https://github.com/simonihmig/responsive-image/commit/b09549cac9796bac0033ad5ff8e5f05e616989f3) Thanks [@simonihmig](https://github.com/simonihmig)! - Add support for Netlify image CDN

### Patch Changes

- Updated dependencies [[`1f3b3d9`](https://github.com/simonihmig/responsive-image/commit/1f3b3d9f952047b5bd3e8a9b67598b50a8ea1a64), [`b5dacfe`](https://github.com/simonihmig/responsive-image/commit/b5dacfebb10224f60bc763105c0a212c313f67b9), [`b09549c`](https://github.com/simonihmig/responsive-image/commit/b09549cac9796bac0033ad5ff8e5f05e616989f3), [`7cef8c6`](https://github.com/simonihmig/responsive-image/commit/7cef8c6a743c9ce6fa3879378705437cff11a22c), [`fe2fe11`](https://github.com/simonihmig/responsive-image/commit/fe2fe11727685a6726034b00dc0cd108d1d54e3f)]:
- @responsive-image/cdn@1.0.0-beta.4
- @responsive-image/core@1.0.0-beta.3

## 1.0.0-beta.4

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ember/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@responsive-image/ember",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "Ember addon to render responsive images, provided as locally processed images or loaded remotely from Image CDNs",
"keywords": [
"ember-addon"
Expand Down
8 changes: 8 additions & 0 deletions packages/vite-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @responsive-image/vite-plugin

## 1.0.0-beta.4

### Patch Changes

- Updated dependencies [[`7cef8c6`](https://github.com/simonihmig/responsive-image/commit/7cef8c6a743c9ce6fa3879378705437cff11a22c)]:
- @responsive-image/core@1.0.0-beta.3
- @responsive-image/build-utils@1.0.0-beta.3

## 1.0.0-beta.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@responsive-image/vite-plugin",
"version": "1.0.0-beta.3",
"version": "1.0.0-beta.4",
"description": "Vite plugins that process and resize images for use with the ResponsiveImage project",
"repository": "https://github.com/simonihmig/responsive-image",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/wc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @responsive-image/wc

## 1.0.0-beta.2

### Patch Changes

- Updated dependencies [[`7cef8c6`](https://github.com/simonihmig/responsive-image/commit/7cef8c6a743c9ce6fa3879378705437cff11a22c)]:
- @responsive-image/core@1.0.0-beta.3

## 1.0.0-beta.1

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Webcomponent to render responsive images, provided as locally processed images or loaded remotely from Image CDNs",
"license": "MIT",
"author": "Simon Ihmig <[email protected]>",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"repository": "https://github.com/simonihmig/responsive-image",
"type": "module",
"main": "dist/src/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/webpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @ember-responsive-image/webpack

## 1.0.0-beta.6

### Patch Changes

- Updated dependencies [[`7cef8c6`](https://github.com/simonihmig/responsive-image/commit/7cef8c6a743c9ce6fa3879378705437cff11a22c)]:
- @responsive-image/core@1.0.0-beta.3
- @responsive-image/build-utils@1.0.0-beta.3

## 1.0.0-beta.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@responsive-image/webpack",
"version": "1.0.0-beta.5",
"version": "1.0.0-beta.6",
"description": "Webpack loaders that process and resize images for use with the ResponsiveImage project",
"repository": "https://github.com/simonihmig/responsive-image",
"license": "MIT",
Expand Down

0 comments on commit cbf1326

Please sign in to comment.