diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4efce83..9d518b2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,7 +2,7 @@ version: 2 updates: - package-ecosystem: npm directory: / - target-branch: main + target-branch: master schedule: { interval: weekly } groups: angular: { patterns: ["@angular/*", "angular-eslint", "@angular-eslint/*", "ng-packagr", "typescript"] } @@ -24,6 +24,8 @@ updates: update-types: ["version-update:semver-major"] - dependency-name: "typescript-eslint" update-types: ["version-update:semver-major"] + - dependency-name: "plotly.js-dist" + update-types: ["version-update:semver-major"] - package-ecosystem: npm directory: / target-branch: v20 @@ -48,6 +50,10 @@ updates: update-types: ["version-update:semver-major"] - dependency-name: "typescript-eslint" update-types: ["version-update:semver-major"] + - dependency-name: "plotly.js-dist" + update-types: ["version-update:semver-major"] + - dependency-name: "zone.js" + update-types: ["version-update:semver-minor"] - package-ecosystem: npm directory: / target-branch: v21 @@ -72,3 +78,5 @@ updates: update-types: ["version-update:semver-major"] - dependency-name: "typescript-eslint" update-types: ["version-update:semver-major"] + - dependency-name: "plotly.js-dist" + update-types: ["version-update:semver-major"] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d61e85a..6c15d3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,11 @@ name: CI on: + workflow_dispatch: pull_request: - branches: [main, v20, v21, "v*"] + branches: [master, v20, v21, "v*"] push: - branches: [main, v20, v21, "v*"] + branches: [master, v20, v21, "v*"] permissions: contents: read @@ -18,8 +19,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 with: node-version: 24.15.0 cache: npm @@ -30,7 +31,7 @@ jobs: - run: npm audit --omit=dev --audit-level=high - run: npm run verify:package - run: npm run verify:consumer - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: angular-plotly-package-${{ github.sha }} path: dist/plotly diff --git a/CHANGELOG.md b/CHANGELOG.md index 6532570..fcfc306 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [20.0.2] - 2026-08-20 +### Fixed +- Added `[innerStyle]` as the preferred plot container styling input while + retaining `[style]` as a deprecated compatibility alias. + + ## [20.0.1] - 2026-08-20 ### Fixed - Exported the documented CDN/window modules and Plotly public types. diff --git a/MAINTENANCE.md b/MAINTENANCE.md index a241aa7..29a8c10 100644 --- a/MAINTENANCE.md +++ b/MAINTENANCE.md @@ -1,13 +1,13 @@ # Maintenance and release policy -The package major identifies its supported Angular major. `main` tracks the +The package major identifies its supported Angular major. `master` tracks the latest Angular major; older supported majors use `vN` maintenance branches. | Package line | Angular | Branch | npm tag | Status | | --- | --- | --- | --- | --- | | 20.x | 20.x | `v20` | `angular20` | LTS through 2026-11-28 | | 21.x | 21.x | `v21` | `angular21` | LTS | -| 22.x | 22.x | `main` | `angular22`, `latest` | Active | +| 22.x | 22.x | `master` | `angular22`, `latest` | Active | ## Changes and forward ports @@ -16,7 +16,7 @@ commit in ascending major order with `git cherry-pick -x`, one linked pull request per branch. Do not forward-port Angular migrations, dependency-major changes, package versions, or release metadata. -`main` has no duplicate current-major branch. Before upgrading `main` to a new +`master` has no duplicate current-major branch. Before upgrading `master` to a new Angular major, create `vN` from its final commit and protect that branch. ## Releases diff --git a/README.md b/README.md index e79b835..5d09003 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,7 @@ > A [plotly.js](https://github.com/plotly/plotly.js) Angular component from > [Plotly](https://plot.ly/). -[](https://circleci.com/gh/plotly/angular-plotly.js) -[](https://coveralls.io/github/plotly/angular-plotly.js?branch=master&i=1) +[](https://github.com/plotly/angular-plotly.js/actions/workflows/ci.yml)