From 5c6ff21d46f2fc9435a5b16032d090e525e425d7 Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Fri, 22 Nov 2024 10:49:53 +0700 Subject: [PATCH] Allow Angular 19 Fixes #2322 --- .changeset/nice-singers-itch.md | 5 +++++ .github/workflows/main.yml | 2 +- packages/apollo-angular/package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/nice-singers-itch.md diff --git a/.changeset/nice-singers-itch.md b/.changeset/nice-singers-itch.md new file mode 100644 index 000000000..c8b65da3b --- /dev/null +++ b/.changeset/nice-singers-itch.md @@ -0,0 +1,5 @@ +--- +'apollo-angular': patch +--- + +Allow Angular 19 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 91a86df42..c06bdfbea 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -115,7 +115,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - angular_version: [17, 18] + angular_version: [17, 18, 19] graphql_version: [15, 16] node_version: [18, 20] steps: diff --git a/packages/apollo-angular/package.json b/packages/apollo-angular/package.json index 4cb38c372..63bf173ae 100644 --- a/packages/apollo-angular/package.json +++ b/packages/apollo-angular/package.json @@ -34,7 +34,7 @@ "test": "NODE_OPTIONS=--experimental-modules jest --config jest.config.js" }, "peerDependencies": { - "@angular/core": "^17.0.0 || ^18.0.0", + "@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0", "@apollo/client": "^3.0.0", "graphql": "^15.0.0 || ^16.0.0", "rxjs": "^6.0.0 || ^7.0.0"