Skip to content

Commit

Permalink
release: 0.14.0-rc.4 (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
t2t2 authored Dec 6, 2022
1 parent c59e55f commit aec4e6d
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ If the version of Open Telemetry is unspecified for a version, then it is the sa

## Unreleased

## 0.14.0-rc.4

- Don't count parent spans against 100 spans per component limit ([#493](https://github.com/signalfx/splunk-otel-js-web/pull/493))
- Integrate otel's performance clock drift fix ([#498](https://github.com/signalfx/splunk-otel-js-web/pull/498))

## 0.14.0-rc.3

| Open Telemetry API | Core | Instrumentations & Contrib |
Expand Down
8 changes: 4 additions & 4 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.14.0-rc.3",
"version": "0.14.0-rc.4",
"workspaces": [
"packages/*"
],
Expand Down
2 changes: 1 addition & 1 deletion 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.14.0-rc.3",
"version": "0.14.0-rc.4",
"description": "Splunk distribution of rrweb for recording session",
"repository": "github:signalfx/splunk-otel-js-browser",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/session-recorder/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ limitations under the License.
*/

// this is an autogenerated file, see scripts/version-update.js
export const VERSION = '0.14.0-rc.3';
export const VERSION = '0.14.0-rc.4';
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.14.0-rc.3",
"version": "0.14.0-rc.4",
"description": "Splunk distribution of Open Telemetry for browser environment.",
"repository": "github:signalfx/splunk-otel-js-browser",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ limitations under the License.
*/

// this is an autogenerated file, see scripts/version-update.js
export const VERSION = '0.14.0-rc.3';
export const VERSION = '0.14.0-rc.4';
7 changes: 4 additions & 3 deletions scripts/version-update.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ import { readFileSync, writeFileSync } from 'fs';
import { resolve } from 'path';
import { getPackageRoots } from './_utils.mjs';

getPackageRoots().forEach(packagePath => {
const packageJsonUrl = resolve(packagePath, 'package.json');
const packageJson = JSON.parse(readFileSync(packageJsonUrl));
// This script is ran when the root package is updated (which happens before child packages)
const packageJsonUrl = resolve(process.cwd(), 'package.json');
const packageJson = JSON.parse(readFileSync(packageJsonUrl));

getPackageRoots().forEach(packagePath => {
const content = `/*
Copyright ${new Date().getFullYear()} Splunk Inc.
Expand Down

0 comments on commit aec4e6d

Please sign in to comment.