Skip to content

Commit

Permalink
Release 0.17.0 (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
t2t2 authored Apr 17, 2024
1 parent 79652db commit f8017a8
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 17 deletions.
6 changes: 2 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ release_npm:
script:
# release to NPM
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
# January: remove --tag beta
- for f in artifacts/*.tgz; do npm publish --tag beta ./$f; done;
- for f in artifacts/*.tgz; do npm publish ./$f; done;
- rm -f ~/.npmrc

release_github:
Expand All @@ -107,8 +106,7 @@ release_github:
- sudo apt install gh

# release in Github
# January: remove --prerelease
- gh release create v${CI_COMMIT_REF_NAME:1} ./artifacts/* --prerelease --target $CI_COMMIT_SHA --repo $GITHUB_REPOSITORY
- gh release create v${CI_COMMIT_REF_NAME:1} ./artifacts/* --target $CI_COMMIT_SHA --repo $GITHUB_REPOSITORY

release_cdn:
artifacts:
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ If the version of Open Telemetry is unspecified for a version, then it is the sa

## Unreleased

## 0.17.0

| Open Telemetry API | Core | Instrumentations & Contrib |
| ------------------ | ------- | -------------------------- |
| ^1.8.0 | ^1.23.0 | ^0.50.0 & compatible |

Changelog since v0.16.5:

* `@splunk/otel-web`
* remove zone.js from user-interaction instrumentation ([#719](https:/signalfx/splunk-otel-js-web/pull/719))
* Preprations for OTLP export support ([#745](https:/signalfx/splunk-otel-js-web/pull/745))
* `@splunk/otel-web-session-recorder`
* Internal changes in how data is shared with `@splunk/otel-web`
**Note**: make sure that to use the same version of `@splunk/otel-web` and `@splunk/otel-web-session-recorder` libraries

## 0.17.0-beta.1

* Fix folders being ignored while packing for npm ([#726](https:/signalfx/splunk-otel-js-web/pull/726))
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@splunk/otel-web-dev-root",
"private": true,
"version": "0.17.0-beta.1",
"version": "0.17.0",
"--workspaces": "Hardcoded so npm runs workspaces commands in order",
"workspaces": [
"packages/web",
Expand Down
4 changes: 2 additions & 2 deletions packages/session-recorder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splunk/otel-web-session-recorder",
"version": "0.17.0-beta.1",
"version": "0.17.0",
"description": "Splunk distribution of rrweb for recording session",
"repository": "github:signalfx/splunk-otel-js-browser",
"scripts": {
Expand Down Expand Up @@ -41,7 +41,7 @@
"type-fest": "^4.0.0"
},
"peerDependencies": {
"@splunk/otel-web": "^0.17.0-beta.0"
"@splunk/otel-web": "^0.17.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.9",
Expand Down
4 changes: 2 additions & 2 deletions packages/session-recorder/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Splunk Inc.
Copyright 2024 Splunk Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -15,4 +15,4 @@ limitations under the License.
*/

// this is an autogenerated file, see scripts/version-update.js
export const VERSION = '0.17.0-beta.1';
export const VERSION = '0.17.0';
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@splunk/otel-web",
"version": "0.17.0-beta.1",
"version": "0.17.0",
"description": "Splunk distribution of Open Telemetry for browser environment.",
"repository": "github:signalfx/splunk-otel-js-browser",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Splunk Inc.
Copyright 2024 Splunk Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -15,4 +15,4 @@ limitations under the License.
*/

// this is an autogenerated file, see scripts/version-update.js
export const VERSION = '0.17.0-beta.1';
export const VERSION = '0.17.0';

0 comments on commit f8017a8

Please sign in to comment.