Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 22, 2022
1 parent 457e559 commit 292eaf5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .changeset/chatty-ants-shop.md

This file was deleted.

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

## 0.3.6

### Patch Changes

- [#4338](https://github.com/withastro/astro/pull/4338) [`579e2daf8`](https://github.com/withastro/astro/commit/579e2daf8dd1816737d1bd253bf96c108a014061) Thanks [@tony-sull](https://github.com/tony-sull)! - When using remote images in SSG builds, query parameters from the original image source should be stripped from final build output

## 0.3.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/image/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@astrojs/image",
"description": "Load and transform images in your Astro site.",
"version": "0.3.5",
"version": "0.3.6",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/image/test/image-ssg.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ describe('SSG images', function () {
verifyImage(`_image/googlelogo_color_272x92dp-${HASH_WITH_QUERY}_544x184.webp`, {
width: 544,
height: 184,
type: 'webp'
type: 'webp',
});
});
});
Expand Down
4 changes: 3 additions & 1 deletion packages/integrations/image/test/image-ssr.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ describe('SSR images - build', function () {
expect(searchParams.get('f')).to.equal('webp');
expect(searchParams.get('w')).to.equal('544');
expect(searchParams.get('h')).to.equal('184');
expect(searchParams.get('href').endsWith('googlelogo_color_272x92dp.png?token=abc')).to.equal(true);
expect(searchParams.get('href').endsWith('googlelogo_color_272x92dp.png?token=abc')).to.equal(
true
);
});
});
});
Expand Down

0 comments on commit 292eaf5

Please sign in to comment.