Skip to content

Commit

Permalink
Version Packages (#999)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 29, 2023
1 parent 276d389 commit 47498c4
Show file tree
Hide file tree
Showing 21 changed files with 84 additions and 55 deletions.
9 changes: 0 additions & 9 deletions .changeset/calm-dancers-happen.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/healthy-toes-confess.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loud-rabbits-worry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-seals-impress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-cooks-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-kids-invite.md

This file was deleted.

14 changes: 14 additions & 0 deletions packages/browser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @segment/analytics-next

## 1.62.0

### Minor Changes

- [#992](https://github.com/segmentio/analytics-next/pull/992) [`a72f473`](https://github.com/segmentio/analytics-next/commit/a72f4736a743e6a6487fd7b5c764639402f9e7ba) Thanks [@silesky](https://github.com/silesky)! - Add 'disable' boolean option to allow for disabling Segment in a testing environment.

### Patch Changes

- [#1001](https://github.com/segmentio/analytics-next/pull/1001) [`57be1ac`](https://github.com/segmentio/analytics-next/commit/57be1acd556a9779edbc5fd4d3f820fb50b65697) Thanks [@silesky](https://github.com/silesky)! - add hasUnmappedDestinations property to types

- Updated dependencies [[`d9b47c4`](https://github.com/segmentio/analytics-next/commit/d9b47c43e5e08efce14fe4150536ff60b8df91e0), [`d9b47c4`](https://github.com/segmentio/analytics-next/commit/d9b47c43e5e08efce14fe4150536ff60b8df91e0)]:
- @segment/analytics-core@1.4.0
- @segment/analytics-generic-utils@1.1.0

## 1.61.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@segment/analytics-next",
"version": "1.61.0",
"version": "1.62.0",
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-next",
Expand Down Expand Up @@ -49,8 +49,8 @@
],
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@segment/analytics-core": "1.3.2",
"@segment/analytics-generic-utils": "1.0.0",
"@segment/analytics-core": "1.4.0",
"@segment/analytics-generic-utils": "1.1.0",
"@segment/analytics.js-video-plugins": "^0.2.1",
"@segment/facade": "^3.4.9",
"@segment/tsub": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/src/generated/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is generated.
export const version = '1.61.0'
export const version = '1.62.0'
16 changes: 16 additions & 0 deletions packages/consent/consent-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @segment/analytics-consent-tools

## 1.1.0

### Minor Changes

- [#1001](https://github.com/segmentio/analytics-next/pull/1001) [`57be1ac`](https://github.com/segmentio/analytics-next/commit/57be1acd556a9779edbc5fd4d3f820fb50b65697) Thanks [@silesky](https://github.com/silesky)! - analytics will not initialize if all of the following conditions are met:

1. No destinations without a consent mapping (consentSettings.hasUnmappedDestinations == false)

AND

2. User has not consented to any category present in the consentSettings.allCategories array.

### Patch Changes

- [#997](https://github.com/segmentio/analytics-next/pull/997) [`dcf279c`](https://github.com/segmentio/analytics-next/commit/dcf279c4591c84952c78022ddfbad945aab8cfde) Thanks [@silesky](https://github.com/silesky)! - Refactor internally to add AnalyticsService

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/consent/consent-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@segment/analytics-consent-tools",
"version": "1.0.0",
"version": "1.1.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/consent/consent-wrapper-onetrust/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @segment/analytics-consent-wrapper-onetrust

## 0.3.3

### Patch Changes

- Updated dependencies [[`57be1ac`](https://github.com/segmentio/analytics-next/commit/57be1acd556a9779edbc5fd4d3f820fb50b65697), [`dcf279c`](https://github.com/segmentio/analytics-next/commit/dcf279c4591c84952c78022ddfbad945aab8cfde)]:
- @segment/analytics-consent-tools@1.1.0

## 0.3.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/consent/consent-wrapper-onetrust/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@segment/analytics-consent-wrapper-onetrust",
"version": "0.3.2",
"version": "0.3.3",
"keywords": [
"segment",
"analytics",
Expand Down Expand Up @@ -41,7 +41,7 @@
"webpack": "yarn run -T webpack"
},
"dependencies": {
"@segment/analytics-consent-tools": "1.0.0"
"@segment/analytics-consent-tools": "1.1.0"
},
"peerDependencies": {
"@segment/analytics-next": ">=1.53.1"
Expand Down
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @segment/analytics-core

## 1.4.0

### Minor Changes

- [#993](https://github.com/segmentio/analytics-next/pull/993) [`d9b47c4`](https://github.com/segmentio/analytics-next/commit/d9b47c43e5e08efce14fe4150536ff60b8df91e0) Thanks [@silesky](https://github.com/silesky)! - Consume Emitter module from `@segment/analytics-generic-utils`

### Patch Changes

- Updated dependencies [[`d9b47c4`](https://github.com/segmentio/analytics-next/commit/d9b47c43e5e08efce14fe4150536ff60b8df91e0)]:
- @segment/analytics-generic-utils@1.1.0

## 1.3.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@segment/analytics-core",
"version": "1.3.2",
"version": "1.4.0",
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-next",
Expand Down Expand Up @@ -34,7 +34,7 @@
"packageManager": "[email protected]",
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@segment/analytics-generic-utils": "1.0.0",
"@segment/analytics-generic-utils": "1.1.0",
"dset": "^3.1.2",
"tslib": "^2.4.1"
}
Expand Down
6 changes: 6 additions & 0 deletions packages/generic-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @segment/analytics-generic-utils

## 1.1.0

### Minor Changes

- [#993](https://github.com/segmentio/analytics-next/pull/993) [`d9b47c4`](https://github.com/segmentio/analytics-next/commit/d9b47c43e5e08efce14fe4150536ff60b8df91e0) Thanks [@silesky](https://github.com/silesky)! - Add Emitter library. Log default warning if a listeners exceeds 10 for a specific event type (configurable)

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/generic-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@segment/analytics-generic-utils",
"version": "1.0.0",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/segmentio/analytics-next",
Expand Down
8 changes: 8 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @segment/analytics-node

## 1.1.4

### Patch Changes

- Updated dependencies [[`d9b47c4`](https://github.com/segmentio/analytics-next/commit/d9b47c43e5e08efce14fe4150536ff60b8df91e0), [`d9b47c4`](https://github.com/segmentio/analytics-next/commit/d9b47c43e5e08efce14fe4150536ff60b8df91e0)]:
- @segment/analytics-core@1.4.0
- @segment/analytics-generic-utils@1.1.0

## 1.1.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@segment/analytics-node",
"version": "1.1.3",
"version": "1.1.4",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
Expand Down Expand Up @@ -36,8 +36,8 @@
},
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@segment/analytics-core": "1.3.2",
"@segment/analytics-generic-utils": "1.0.0",
"@segment/analytics-core": "1.4.0",
"@segment/analytics-generic-utils": "1.1.0",
"buffer": "^6.0.3",
"node-fetch": "^2.6.7",
"tslib": "^2.4.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/generated/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is generated.
export const version = '1.1.3'
export const version = '1.1.4'
16 changes: 8 additions & 8 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3816,7 +3816,7 @@ __metadata:
languageName: node
linkType: hard

"@segment/analytics-consent-tools@1.0.0, @segment/analytics-consent-tools@workspace:^, @segment/analytics-consent-tools@workspace:packages/consent/consent-tools":
"@segment/analytics-consent-tools@1.1.0, @segment/analytics-consent-tools@workspace:^, @segment/analytics-consent-tools@workspace:packages/consent/consent-tools":
version: 0.0.0-use.local
resolution: "@segment/analytics-consent-tools@workspace:packages/consent/consent-tools"
dependencies:
Expand All @@ -3837,7 +3837,7 @@ __metadata:
dependencies:
"@internal/config-webpack": "workspace:^"
"@internal/test-helpers": "workspace:^"
"@segment/analytics-consent-tools": 1.0.0
"@segment/analytics-consent-tools": 1.1.0
peerDependencies:
"@segment/analytics-next": ">=1.53.1"
peerDependenciesMeta:
Expand All @@ -3851,13 +3851,13 @@ __metadata:
resolution: "@segment/analytics-core@workspace:packages/core"
dependencies:
"@lukeed/uuid": ^2.0.0
"@segment/analytics-generic-utils": 1.0.0
"@segment/analytics-generic-utils": 1.1.0
dset: ^3.1.2
tslib: ^2.4.1
languageName: unknown
linkType: soft

"@segment/analytics-generic-utils@1.0.0, @segment/analytics-generic-utils@workspace:packages/generic-utils":
"@segment/analytics-generic-utils@1.1.0, @segment/analytics-generic-utils@workspace:packages/generic-utils":
version: 0.0.0-use.local
resolution: "@segment/analytics-generic-utils@workspace:packages/generic-utils"
languageName: unknown
Expand All @@ -3870,8 +3870,8 @@ __metadata:
"@internal/config": 0.0.0
"@lukeed/uuid": ^2.0.0
"@segment/analytics-browser-actions-braze": ^1.3.0
"@segment/analytics-core": 1.3.2
"@segment/analytics-generic-utils": 1.0.0
"@segment/analytics-core": 1.4.0
"@segment/analytics-generic-utils": 1.1.0
"@segment/analytics.js-integration": ^3.3.3
"@segment/analytics.js-integration-amplitude": ^3.3.3
"@segment/analytics.js-video-plugins": ^0.2.1
Expand Down Expand Up @@ -3927,8 +3927,8 @@ __metadata:
dependencies:
"@internal/config": 0.0.0
"@lukeed/uuid": ^2.0.0
"@segment/analytics-core": 1.3.2
"@segment/analytics-generic-utils": 1.0.0
"@segment/analytics-core": 1.4.0
"@segment/analytics-generic-utils": 1.1.0
"@types/node": ^16
axios: ^1.6.0
buffer: ^6.0.3
Expand Down

0 comments on commit 47498c4

Please sign in to comment.