Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: imgix/angular
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.8
Choose a base ref
...
head repository: imgix/angular
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.9
Choose a head ref

Commits on Dec 15, 2021

  1. Copy the full SHA
    0aef16c View commit details
  2. Copy the full SHA
    d51ccd9 View commit details
  3. Copy the full SHA
    81d9422 View commit details
  4. Copy the full SHA
    a63fc92 View commit details
  5. Copy the full SHA
    2c2bd8e View commit details
  6. Copy the full SHA
    4b66119 View commit details

Commits on Dec 20, 2021

  1. Copy the full SHA
    dbfc0c7 View commit details

Commits on Dec 27, 2021

  1. Copy the full SHA
    3b6e9dd View commit details
  2. Copy the full SHA
    1996465 View commit details

Commits on Jan 3, 2022

  1. Copy the full SHA
    4421a48 View commit details

Commits on Jan 10, 2022

  1. Copy the full SHA
    a9f404d View commit details

Commits on Jan 17, 2022

  1. Copy the full SHA
    59ffcb7 View commit details

Commits on Jan 24, 2022

  1. Copy the full SHA
    b17365c View commit details

Commits on Jan 31, 2022

  1. Copy the full SHA
    a92f08d View commit details

Commits on Feb 7, 2022

  1. Copy the full SHA
    7038bbc View commit details

Commits on Feb 14, 2022

  1. Copy the full SHA
    04eca50 View commit details

Commits on Feb 21, 2022

  1. Copy the full SHA
    5bef4eb View commit details

Commits on Feb 28, 2022

  1. Copy the full SHA
    ae2b098 View commit details
  2. Copy the full SHA
    b9b18da View commit details

Commits on Mar 14, 2022

  1. Copy the full SHA
    22a23fc View commit details

Commits on Mar 21, 2022

  1. Copy the full SHA
    56bce58 View commit details

Commits on Mar 28, 2022

  1. Copy the full SHA
    5403e54 View commit details

Commits on Apr 4, 2022

  1. Copy the full SHA
    dab9580 View commit details

Commits on Apr 11, 2022

  1. Copy the full SHA
    25206d4 View commit details
  2. Copy the full SHA
    5055470 View commit details

Commits on Apr 18, 2022

  1. Copy the full SHA
    8d7b3f2 View commit details

Commits on Jul 22, 2022

  1. Copy the full SHA
    ebdcdd6 View commit details
  2. Copy the full SHA
    3dbea94 View commit details
  3. Copy the full SHA
    3dd9920 View commit details
  4. Copy the full SHA
    146aa11 View commit details
  5. Copy the full SHA
    7df6990 View commit details
  6. Copy the full SHA
    b909dca View commit details
  7. Copy the full SHA
    b244a24 View commit details
  8. Copy the full SHA
    f25f53e View commit details
  9. Copy the full SHA
    1d91e33 View commit details

Commits on Jul 26, 2022

  1. Copy the full SHA
    b211319 View commit details
  2. Copy the full SHA
    bea2f08 View commit details
  3. Copy the full SHA
    93d087a View commit details
  4. Copy the full SHA
    4f91f33 View commit details
  5. fix(deps): rollback ng-packagr to 11.2.4

    Renovate-bot had previously updated ng-packagr resulted in broken builds.
    atlawrie committed Jul 26, 2022
    Copy the full SHA
    b77de59 View commit details
  6. Copy the full SHA
    6702f7a View commit details
  7. Copy the full SHA
    c88db9d View commit details
  8. Copy the full SHA
    00edd9c View commit details
  9. chore(circleci): fixed typo

    Co-authored-by: Sherwin Heydarbeygi <sherwin@imgix.com>
    atlawrie and Sherwin Heydarbeygi committed Jul 26, 2022
    Copy the full SHA
    3bf487b View commit details
  10. chore(release): 1.1.9

    ### [1.1.9](v1.1.8...v1.1.9) (2022-07-26)
    
    ### Bug Fixes
    
    * **deps:** rollback ng-packagr to 11.2.4 ([b77de59](b77de59))
    
     [skip ci]
    imgix-git-robot committed Jul 26, 2022
    Copy the full SHA
    ff9dc84 View commit details
61 changes: 61 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
version: 2.1

orbs:
node: circleci/node@5.0.2
browser-tools: circleci/browser-tools@1.2.4

jobs:
test:
parameters:
version:
default: "stable"
description: Node.JS version to install
type: string
docker:
- image: cimg/node:<<parameters.version>>-browsers
resource_class: large
steps:
- checkout
- browser-tools/install-browser-tools:
install-geckodriver: false
- run:
command: |
google-chrome --version
firefox --version
name: Check install
- when:
condition:
equal: [ "17.9", <<parameters.version>>]
steps:
# Prevents build error on stable node version
- run: echo 'export NODE_OPTIONS=--openssl-legacy-provider' >> $BASH_ENV
- node/install-packages:
override-ci-command: yarn install
- run: yarn run test-headless
- run:
name: "Test whether build is successful"
command: yarn build


deploy:
docker:
- image: cimg/node:current
steps:
- checkout
- node/install-packages:
override-ci-command: yarn install
- run: npm run publish-semantic-release

workflows:
test:
jobs:
- test:
matrix:
parameters:
version:
- "17.9"
- "lts"

- deploy:
requires:
- test
36 changes: 0 additions & 36 deletions .travis.yml

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [1.1.9](https://github.com/imgix/angular/compare/v1.1.8...v1.1.9) (2022-07-26)


### Bug Fixes

* **deps:** rollback ng-packagr to 11.2.4 ([b77de59](https://github.com/imgix/angular/commit/b77de594b7213b1ebbd439b3add5b2e5475a71b7))

### [1.1.8](https://github.com/imgix/angular/compare/v1.1.7...v1.1.8) (2021-12-15)


2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 2-Clause License

Copyright (c) 2020, imgix
Copyright (c) 2022, imgix, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
12 changes: 9 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
@@ -56,13 +56,18 @@
"main": "projects/imgix-angular-example/src/main.ts",
"polyfills": "projects/imgix-angular-example/src/polyfills.ts",
"tsConfig": "projects/imgix-angular-example/tsconfig.app.json",
"aot": true,
"assets": [
"projects/imgix-angular-example/src/favicon.ico",
"projects/imgix-angular-example/src/assets"
],
"styles": ["projects/imgix-angular-example/src/styles.css"],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
@@ -92,7 +97,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -19,47 +19,47 @@
"private": true,
"dependencies": {},
"devDependencies": {
"@angular-builders/custom-webpack": "11.1.1",
"@angular-devkit/build-angular": "0.1102.15",
"@angular/animations": "11.0.2",
"@angular/cli": "11.2.15",
"@angular/common": "11.0.2",
"@angular/compiler": "11.0.2",
"@angular/compiler-cli": "11.0.2",
"@angular/core": "11.0.2",
"@angular/forms": "11.0.2",
"@angular/language-service": "11.0.2",
"@angular/platform-browser": "11.0.2",
"@angular/platform-browser-dynamic": "11.0.2",
"@angular/router": "11.0.2",
"@angular-builders/custom-webpack": "13.1.0",
"@angular-devkit/build-angular": "12.2.18",
"@angular/animations": "12.2.16",
"@angular/cli": "12.2.18",
"@angular/common": "12.2.16",
"@angular/compiler": "12.2.16",
"@angular/compiler-cli": "12.2.16",
"@angular/core": "12.2.16",
"@angular/forms": "12.2.16",
"@angular/language-service": "12.2.16",
"@angular/platform-browser": "12.2.16",
"@angular/platform-browser-dynamic": "12.2.16",
"@angular/router": "12.2.16",
"@google/semantic-release-replace-plugin": "1.1.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.1",
"@testing-library/angular": "10.5.0",
"@types/jasmine": "3.8.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@testing-library/angular": "10.7.1",
"@types/jasmine": "3.10.5",
"@types/jasminewd2": "2.0.10",
"@types/node": "12.20.25",
"@types/node": "16.11.26",
"codelyzer": "6.0.2",
"conventional-changelog-conventionalcommits": "4.6.1",
"jasmine-core": "3.9.0",
"conventional-changelog-conventionalcommits": "4.6.3",
"jasmine-core": "3.99.1",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.2.3",
"karma-chrome-launcher": "3.1.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "4.0.1",
"karma-jasmine": "4.0.2",
"karma-jasmine-html-reporter": "1.7.0",
"ng-packagr": "11.2.4",
"prettier": "2.3.2",
"prettier": "2.5.1",
"protractor": "7.0.0",
"rxjs": "6.6.7",
"semantic-release": "17.4.7",
"rxjs": "7.4.0",
"semantic-release": "19.0.2",
"ts-node": "9.1.1",
"tslib": "2.3.1",
"tslint": "6.1.3",
"typescript": "4.0.2",
"zone.js": "0.11.4"
"typescript": "4.3.5",
"zone.js": "~0.11.4"
},
"release": {
"branches": [
@@ -203,4 +203,4 @@
]
]
}
}
}
Original file line number Diff line number Diff line change
@@ -13,4 +13,4 @@ export const environment = {
* This import should be commented out in production mode because it will have a negative impact
* on performance if an error is thrown.
*/
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
2 changes: 1 addition & 1 deletion projects/imgix-angular-example/src/polyfills.ts
Original file line number Diff line number Diff line change
@@ -55,7 +55,7 @@
/***************************************************************************************************
* Zone JS is required by default for Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.

/***************************************************************************************************
* APPLICATION IMPORTS
2 changes: 1 addition & 1 deletion projects/imgix-angular-example/src/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file is required by karma.conf.js and loads recursively all the .spec and framework files

import 'zone.js/dist/zone-testing';
import 'zone.js/testing';
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
8 changes: 4 additions & 4 deletions projects/imgix-angular/package.json
Original file line number Diff line number Diff line change
@@ -36,11 +36,11 @@
"imgix-core-js": "2.3.2",
"imgix-url-params": "^11.9.1",
"tslib": "^2.0.2",
"urijs": "1.19.7"
"urijs": "1.19.8"
},
"peerDependencies": {
"@angular/common": "8.x || 9.x || 10.x || 11.x",
"@angular/core": "8.x || 9.x || 10.x || 11.x",
"@angular/platform-browser": "8.x || 9.x || 10.x || 11.x"
"@angular/common": "8.x || 9.x || 10.x || 11.x || 12.x",
"@angular/core": "8.x || 9.x || 10.x || 11.x || 12.x",
"@angular/platform-browser": "8.x || 9.x || 10.x || 11.x || 12.x"
}
}
6 changes: 3 additions & 3 deletions projects/imgix-angular/src/test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// This file is required by karma.conf.js and loads recursively all the .spec and framework files

import 'zone.js';
import 'zone.js/testing';
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
platformBrowserDynamicTesting,
} from '@angular/platform-browser-dynamic/testing';
import 'zone.js/dist/zone';
import 'zone.js/dist/zone-testing';


declare const require: any;

2 changes: 2 additions & 0 deletions projects/imgix-angular/src/test/util.ts
Original file line number Diff line number Diff line change
@@ -58,6 +58,8 @@ export const renderTemplate = async (
) => {
const componentObj = createComponentWithTestWrapper(template);
const renderResult = await renderComponentWithImgixComponent(
//After testing-library update, TypeScript insists component is not a string, while typeof guarantees it as a string
//@ts-ignore
componentObj.component,
{
declarations: [componentObj.component],
Loading