Skip to content

Commit

Permalink
apply changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
sndrs committed Jul 2, 2024
1 parent 9258178 commit 279f298
Show file tree
Hide file tree
Showing 24 changed files with 241 additions and 144 deletions.
5 changes: 0 additions & 5 deletions .changeset/lazy-beers-wave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-squids-protect.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/twenty-steaks-sleep.md

This file was deleted.

6 changes: 6 additions & 0 deletions libs/@guardian/ab-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @guardian/ab-core

## 8.0.0

### Major Changes

- e5b15dc: Update TypeScript support to `v5.5.2`.

## 7.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion libs/@guardian/ab-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@guardian/ab-core",
"version": "7.0.3",
"version": "8.0.0",
"private": false,
"description": "A client-side library for A/B & multivariate testing",
"license": "Apache-2.0",
Expand Down
11 changes: 11 additions & 0 deletions libs/@guardian/ab-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @guardian/ab-react

## 9.0.0

### Major Changes

- e5b15dc: Update TypeScript support to `v5.5.2`.

### Patch Changes

- Updated dependencies [e5b15dc]
- @guardian/ab-core@8.0.0

## 8.0.2

### Patch Changes
Expand Down
26 changes: 23 additions & 3 deletions libs/@guardian/ab-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@guardian/ab-react",
"version": "8.0.2",
"version": "9.0.0",
"private": false,
"description": "A React library for A/B & multivariate testing",
"license": "Apache-2.0",
Expand All @@ -26,7 +26,7 @@
"verify-dist": "wireit"
},
"devDependencies": {
"@guardian/ab-core": "7.0.0",
"@guardian/ab-core": "8.0.0",
"@testing-library/react": "14.2.1",
"@types/jest": "29.5.8",
"@types/react": "18.2.11",
Expand All @@ -41,7 +41,7 @@
"wireit": "0.14.4"
},
"peerDependencies": {
"@guardian/ab-core": "^7.0.0",
"@guardian/ab-core": "^8.0.0",
"@types/react": "^18.2.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand All @@ -60,8 +60,16 @@
"access": "public"
},
"wireit": {
"__deps__": {
"dependencies": [
"../ab-core:build"
]
},
"build": {
"command": "rollup -c",
"dependencies": [
"__deps__"
],
"files": [
"src/**",
"package.json",
Expand All @@ -75,6 +83,9 @@
},
"fix": {
"command": "eslint --cache --color . --fix",
"dependencies": [
"__deps__"
],
"files": [
"**",
"../../../.eslint*",
Expand All @@ -88,6 +99,9 @@
},
"lint": {
"command": "eslint --cache --color .",
"dependencies": [
"__deps__"
],
"files": [
"**",
"../../../.eslint*",
Expand All @@ -98,6 +112,9 @@
},
"test": {
"command": "jest",
"dependencies": [
"__deps__"
],
"files": [
"**",
"../../../configs/jest.*",
Expand All @@ -108,6 +125,9 @@
},
"tsc": {
"command": "tsc --pretty",
"dependencies": [
"__deps__"
],
"files": [
"**",
"tsconfig.json",
Expand Down
16 changes: 16 additions & 0 deletions libs/@guardian/core-web-vitals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @guardian/core-web-vitals

## 7.0.0

### Major Changes

- 4de52e7: This major change adds attribution data on 3 core web vital metrics; CLS, INP, and LCP.
- It also updates the endpoint so that this data will now be sent to a new table in big query. We now send the stage as a value to big query, rather than using separate endpoints.
- In addition, null values have been removed in favour of undefined.
- It also updates the version of `web-vitals` required to `v4.2.1`.
- e5b15dc: Update TypeScript support to `v5.5.2`.

### Patch Changes

- Updated dependencies [a5498b8]
- Updated dependencies [e5b15dc]
- @guardian/libs@18.0.0

## 6.0.1

### Patch Changes
Expand Down
30 changes: 25 additions & 5 deletions libs/@guardian/core-web-vitals/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@guardian/core-web-vitals",
"version": "6.0.1",
"version": "7.0.0",
"private": false,
"description": "Methods to help with the implementation of Google's Core Web Vitals",
"sideEffects": false,
Expand All @@ -25,22 +25,22 @@
"verify-dist": "wireit"
},
"devDependencies": {
"@guardian/libs": "16.0.0",
"@guardian/libs": "18.0.0",
"@types/jest": "29.5.8",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"rollup": "4.18.0",
"ts-jest": "29.1.1",
"tslib": "2.6.2",
"typescript": "5.5.2",
"web-vitals": "4.2.0",
"web-vitals": "4.2.1",
"wireit": "0.14.4"
},
"peerDependencies": {
"@guardian/libs": "^16.0.0",
"@guardian/libs": "^18.0.0",
"tslib": "^2.6.2",
"typescript": "~5.5.2",
"web-vitals": "^4.2.0"
"web-vitals": "^4.2.1"
},
"peerDependenciesMeta": {
"typescript": {
Expand All @@ -51,8 +51,16 @@
"access": "public"
},
"wireit": {
"__deps__": {
"dependencies": [
"../libs:build"
]
},
"build": {
"command": "rollup -c",
"dependencies": [
"__deps__"
],
"files": [
"src/**",
"package.json",
Expand All @@ -66,6 +74,9 @@
},
"fix": {
"command": "eslint --cache --color . --fix",
"dependencies": [
"__deps__"
],
"files": [
"**",
"../../../.eslint*",
Expand All @@ -79,6 +90,9 @@
},
"lint": {
"command": "eslint --cache --color .",
"dependencies": [
"__deps__"
],
"files": [
"**",
"../../../.eslint*",
Expand All @@ -89,6 +103,9 @@
},
"test": {
"command": "jest",
"dependencies": [
"__deps__"
],
"files": [
"**",
"../../../configs/jest.*",
Expand All @@ -99,6 +116,9 @@
},
"tsc": {
"command": "tsc --pretty",
"dependencies": [
"__deps__"
],
"files": [
"**",
"tsconfig.json",
Expand Down
6 changes: 6 additions & 0 deletions libs/@guardian/eslint-config-typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @guardian/eslint-config-typescript

## 11.0.0

### Major Changes

- e5b15dc: Update TypeScript support to `v5.5.2`.

## 10.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion libs/@guardian/eslint-config-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@guardian/eslint-config-typescript",
"version": "10.0.1",
"version": "11.0.0",
"description": "ESLint config for Guardian TypeScript projects",
"main": "index.js",
"scripts": {
Expand Down
13 changes: 13 additions & 0 deletions libs/@guardian/identity-auth-frontend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @guardian/identity-auth-frontend

## 5.0.0

### Major Changes

- e5b15dc: Update TypeScript support to `v5.5.2`.

### Patch Changes

- Updated dependencies [a5498b8]
- Updated dependencies [e5b15dc]
- @guardian/libs@18.0.0
- @guardian/identity-auth@3.0.0

## 4.0.1

### Patch Changes
Expand Down
26 changes: 17 additions & 9 deletions libs/@guardian/identity-auth-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@guardian/identity-auth-frontend",
"version": "4.0.1",
"version": "5.0.0",
"private": false,
"description": "",
"license": "Apache-2.0",
Expand All @@ -26,8 +26,8 @@
"verify-dist": "wireit"
},
"devDependencies": {
"@guardian/identity-auth": "2.1.0",
"@guardian/libs": "16.0.0",
"@guardian/identity-auth": "3.0.0",
"@guardian/libs": "18.0.0",
"@types/jest": "29.5.8",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
Expand All @@ -39,8 +39,8 @@
"wireit": "0.14.4"
},
"peerDependencies": {
"@guardian/identity-auth": "^2.1.0",
"@guardian/libs": "^16.0.0",
"@guardian/identity-auth": "^3.0.0",
"@guardian/libs": "^18.0.0",
"tslib": "^2.6.2",
"typescript": "~5.5.2"
},
Expand All @@ -53,10 +53,15 @@
"access": "public"
},
"wireit": {
"__deps__": {
"dependencies": [
"../identity-auth:build"
]
},
"build": {
"command": "rollup -c",
"dependencies": [
"../identity-auth:build"
"__deps__"
],
"files": [
"src/**",
Expand All @@ -72,7 +77,7 @@
"fix": {
"command": "eslint --cache --color . --fix",
"dependencies": [
"build"
"__deps__"
],
"files": [
"**",
Expand All @@ -88,7 +93,7 @@
"lint": {
"command": "eslint --cache --color .",
"dependencies": [
"build"
"__deps__"
],
"files": [
"**",
Expand All @@ -101,7 +106,7 @@
"test": {
"command": "jest",
"dependencies": [
"../identity-auth:build"
"__deps__"
],
"files": [
"**",
Expand All @@ -113,6 +118,9 @@
},
"tsc": {
"command": "tsc --pretty",
"dependencies": [
"__deps__"
],
"files": [
"**",
"tsconfig.json",
Expand Down
Loading

0 comments on commit 279f298

Please sign in to comment.