Skip to content

Commit a9b99ad

Browse files
Version Packages (#1038)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent d212633 commit a9b99ad

File tree

14 files changed

+66
-37
lines changed

14 files changed

+66
-37
lines changed

.changeset/message-id-backward-compatibility.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/spicy-fireants-reflect.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/spicy-pets-boil.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/browser/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @segment/analytics-next
22

3+
## 1.65.0
4+
5+
### Minor Changes
6+
7+
- [#945](https://github.com/segmentio/analytics-next/pull/945) [`d212633`](https://github.com/segmentio/analytics-next/commit/d21263369d5980f4f57b13795524dbc345a02e5c) Thanks [@zikaari](https://github.com/zikaari)! - Load destinations lazily and start sending events as each becomes available instead of waiting for all to load first
8+
9+
### Patch Changes
10+
11+
- [#1036](https://github.com/segmentio/analytics-next/pull/1036) [`f65c131`](https://github.com/segmentio/analytics-next/commit/f65c131a62f979b6629b086b3eb9cd9b3ffefe31) Thanks [@danieljackins](https://github.com/danieljackins)! - Fix schema-filter bug
12+
13+
- Updated dependencies [[`95fd2fd`](https://github.com/segmentio/analytics-next/commit/95fd2fd801da26505ddcead96ffaa83aa4364994), [`d212633`](https://github.com/segmentio/analytics-next/commit/d21263369d5980f4f57b13795524dbc345a02e5c)]:
14+
- @segment/analytics-core@1.5.0
15+
- @segment/analytics-generic-utils@1.2.0
16+
317
## 1.64.0
418

519
### Minor Changes

packages/browser/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@segment/analytics-next",
3-
"version": "1.64.0",
3+
"version": "1.65.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/segmentio/analytics-next",
@@ -49,8 +49,8 @@
4949
],
5050
"dependencies": {
5151
"@lukeed/uuid": "^2.0.0",
52-
"@segment/analytics-core": "1.4.1",
53-
"@segment/analytics-generic-utils": "1.1.1",
52+
"@segment/analytics-core": "1.5.0",
53+
"@segment/analytics-generic-utils": "1.2.0",
5454
"@segment/analytics.js-video-plugins": "^0.2.1",
5555
"@segment/facade": "^3.4.9",
5656
"@segment/tsub": "^2.0.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is generated.
2-
export const version = '1.64.0'
2+
export const version = '1.65.0'

packages/core/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @segment/analytics-core
22

3+
## 1.5.0
4+
5+
### Minor Changes
6+
7+
- [#945](https://github.com/segmentio/analytics-next/pull/945) [`d212633`](https://github.com/segmentio/analytics-next/commit/d21263369d5980f4f57b13795524dbc345a02e5c) Thanks [@zikaari](https://github.com/zikaari)! - Load destinations lazily and start sending events as each becomes available instead of waiting for all to load first
8+
9+
### Patch Changes
10+
11+
- [#1043](https://github.com/segmentio/analytics-next/pull/1043) [`95fd2fd`](https://github.com/segmentio/analytics-next/commit/95fd2fd801da26505ddcead96ffaa83aa4364994) Thanks [@silesky](https://github.com/silesky)! - This ensures backward compatibility with analytics-node by modifying '@segment/analytics-core'. Specifically, the changes prevent the generation of a messageId if it is already set. This adjustment aligns with the behavior outlined in analytics-node's source code [here](https://github.com/segmentio/analytics-node/blob/master/index.js#L195-L201).
12+
13+
While this is a core release, only the node library is affected, as the browser has its own EventFactory atm.
14+
15+
- Updated dependencies [[`d212633`](https://github.com/segmentio/analytics-next/commit/d21263369d5980f4f57b13795524dbc345a02e5c)]:
16+
- @segment/analytics-generic-utils@1.2.0
17+
318
## 1.4.1
419

520
### Patch Changes

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@segment/analytics-core",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/segmentio/analytics-next",
@@ -34,7 +34,7 @@
3434
"packageManager": "yarn@3.4.1",
3535
"dependencies": {
3636
"@lukeed/uuid": "^2.0.0",
37-
"@segment/analytics-generic-utils": "1.1.1",
37+
"@segment/analytics-generic-utils": "1.2.0",
3838
"dset": "^3.1.2",
3939
"tslib": "^2.4.1"
4040
}

packages/generic-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @segment/analytics-generic-utils
22

3+
## 1.2.0
4+
5+
### Minor Changes
6+
7+
- [#945](https://github.com/segmentio/analytics-next/pull/945) [`d212633`](https://github.com/segmentio/analytics-next/commit/d21263369d5980f4f57b13795524dbc345a02e5c) Thanks [@zikaari](https://github.com/zikaari)! - Load destinations lazily and start sending events as each becomes available instead of waiting for all to load first
8+
39
## 1.1.1
410

511
### Patch Changes

packages/generic-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@segment/analytics-generic-utils",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/segmentio/analytics-next",

0 commit comments

Comments
 (0)