Skip to content

Commit

Permalink
chore(release): 3.0.0-rc.1
Browse files Browse the repository at this point in the history
## [3.0.0-rc.1](v2.9.0-rc.2...v3.0.0-rc.1) (2022-01-12)

### ⚠ BREAKING CHANGES

* Vue 2 syntax and usage no longer compatible

### Miscellaneous Chores

* remove vue-3 compat build ([68784ee](68784ee))
  • Loading branch information
imgix-git-robot committed Jan 12, 2022
1 parent 0ecf521 commit a8c31a5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dist/vue-imgix.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ var IxImg = defineComponent({

function objectWithoutProperties (obj, exclude) { var target = {}; for (var k in obj) if (Object.prototype.hasOwnProperty.call(obj, k) && exclude.indexOf(k) === -1) target[k] = obj[k]; return target; }
// Do not change this
var VERSION = '2.9.0-rc.1';
var VERSION = '2.9.0-rc.2';
var clientOptionDefaults = {
includeLibraryParam: true,
};
Expand Down Expand Up @@ -1054,7 +1054,7 @@ var VueImgixClient = function VueImgixClient(options) {
this.options = Object.assign({}, clientOptionDefaults, options);
this.client = new ImgixClient({
domain: this.options.domain,
includeLibraryParam: false, // force false so that @imgix/js-core doesn't include its own library param
includeLibraryParam: false,
});
// This is not a public API, so it is not included in the type definitions for ImgixClient
if (this.options.includeLibraryParam) {
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-imgix.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ var VueImgix = (function (exports, vue) {

function objectWithoutProperties (obj, exclude) { var target = {}; for (var k in obj) if (Object.prototype.hasOwnProperty.call(obj, k) && exclude.indexOf(k) === -1) target[k] = obj[k]; return target; }
// Do not change this
var VERSION = '2.9.0-rc.1';
var VERSION = '2.9.0-rc.2';
var clientOptionDefaults = {
includeLibraryParam: true,
};
Expand Down Expand Up @@ -1055,7 +1055,7 @@ var VueImgix = (function (exports, vue) {
this.options = Object.assign({}, clientOptionDefaults, options);
this.client = new ImgixClient({
domain: this.options.domain,
includeLibraryParam: false, // force false so that @imgix/js-core doesn't include its own library param
includeLibraryParam: false,
});
// This is not a public API, so it is not included in the type definitions for ImgixClient
if (this.options.includeLibraryParam) {
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-imgix.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@

function objectWithoutProperties (obj, exclude) { var target = {}; for (var k in obj) if (Object.prototype.hasOwnProperty.call(obj, k) && exclude.indexOf(k) === -1) target[k] = obj[k]; return target; }
// Do not change this
var VERSION = '2.9.0-rc.1';
var VERSION = '2.9.0-rc.2';
var clientOptionDefaults = {
includeLibraryParam: true,
};
Expand Down Expand Up @@ -1058,7 +1058,7 @@
this.options = Object.assign({}, clientOptionDefaults, options);
this.client = new ImgixClient({
domain: this.options.domain,
includeLibraryParam: false, // force false so that @imgix/js-core doesn't include its own library param
includeLibraryParam: false,
});
// This is not a public API, so it is not included in the type definitions for ImgixClient
if (this.options.includeLibraryParam) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"module": "dist/vue-imgix.esm.js",
"jsnext:main": "dist/vue-imgix.esm.js",
"unpkg": "dist/vue-imgix.min.js",
"version": "2.9.0-rc.2",
"version": "3.0.0-rc.1",
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup --config build/rollup.config.js",
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vue-imgix/vue-imgix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
import type { IVueImgixClient } from './types';

// Do not change this
const VERSION = '2.9.0-rc.2';
const VERSION = '3.0.0-rc.1';

const clientOptionDefaults = {
includeLibraryParam: true,
Expand Down

0 comments on commit a8c31a5

Please sign in to comment.