Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sm/new logger #876

Merged
merged 43 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
1f52733
fix: bump jsforce
cristiand391 Jun 22, 2023
7b6565b
feat: pino logger
mshanemc Jun 27, 2023
ff88212
refactor: standardize file naming
mshanemc Jun 27, 2023
2dbaaf5
Merge remote-tracking branch 'origin/cd/fix-jwt-jsforce' into sm/new-…
mshanemc Jun 27, 2023
fcf0ec5
chore: add pino-abstract-transport
mshanemc Jun 27, 2023
f32e09e
chore: eslint cleanup
mshanemc Jun 27, 2023
5559f95
chore: windows ut jsdoc fail
mshanemc Jun 27, 2023
2af0bb9
feat: clean up week+ old log files
mshanemc Jun 27, 2023
789dcc4
refactor: use logger, not debug, for lifecycle
mshanemc Jun 27, 2023
e0d3124
refactor: test updates for Lifecycle change
mshanemc Jun 27, 2023
7e9e725
chore: eslint cleanup
mshanemc Jun 27, 2023
18608f4
Merge branch 'sm/perf-metrics' into sm/new-logger
mshanemc Jun 28, 2023
a8dd3bb
test: remove unused cache since autopush
mshanemc Jun 28, 2023
5f0f741
test: also build
mshanemc Jun 28, 2023
b927164
feat: parameterize log cleanup for test use
mshanemc Jun 28, 2023
ace491a
test: unwrap array ut
mshanemc Jun 28, 2023
bd83d3e
test: cleanup from test
mshanemc Jun 28, 2023
210f380
Merge remote-tracking branch 'origin/main' into sm/new-logger
mshanemc Jun 29, 2023
0ed3f61
chore: update cleanup odds and log a warning when cleanup fails
mshanemc Jun 29, 2023
4b0746b
refactor: 3x faster filters
mshanemc Jun 29, 2023
b64cc72
style: comments from self-review
mshanemc Jun 29, 2023
e37e172
chore: code cleanup for pr
mshanemc Jun 29, 2023
eaa03ef
refactor: deprecate Global prop
mshanemc Jul 3, 2023
70be1d0
test: output log destination
mshanemc Jul 3, 2023
aab1552
test: 1 external nut
mshanemc Jul 3, 2023
3f3b529
test: verify auth nuts
mshanemc Jul 3, 2023
96735d7
test: get more data for 3 windows nut failures
mshanemc Jul 5, 2023
52b2c86
test: avoid perf flaps, restore all extNuts
mshanemc Jul 5, 2023
17dd004
test: delay nuts for UT
mshanemc Jul 5, 2023
0b24b59
test: org with testkit for debug
mshanemc Jul 6, 2023
a742e1f
Merge remote-tracking branch 'origin/main' into sm/new-logger
mshanemc Jul 6, 2023
4c1a87d
test: re-add user, org plugins
mshanemc Jul 6, 2023
2d8191a
test: full extNut suite
mshanemc Jul 6, 2023
c52a29b
chore: breaking changes for Logger
mshanemc Jul 20, 2023
df0132a
Merge remote-tracking branch 'origin/main' into sm/new-logger
mshanemc Jul 20, 2023
6f9451a
docs: logger migration guide
mshanemc Jul 20, 2023
568e9e8
chore: new prerelease logic
iowillhoit Jul 20, 2023
bca0b5a
Merge pull request #897 from forcedotcom/ew/gha
iowillhoit Jul 20, 2023
06cf627
chore(release): 5.0.1-v5-beta.0 [skip ci]
svc-cli-bot Jul 20, 2023
cbe1090
refactor: log without JSON.stringify
mshanemc Jul 21, 2023
c6bbeb5
refactor: we can log objects now
mshanemc Jul 21, 2023
6959776
chore(release): 5.0.1-v5-beta.1 [skip ci]
svc-cli-bot Jul 24, 2023
039cc19
chore: pr comments
mshanemc Jul 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: create-github-release

on:
push:
branches:
- main
- prerelease/**
tags-ignore:
- '*'
workflow_dispatch:
inputs:
prerelease:
type: string
description: 'Name to use for the prerelease: beta, dev, etc. NOTE: If this is already set in the package.json, it does not need to be passed in here.'

jobs:
release:
uses: salesforcecli/github-workflows/.github/workflows/create-github-release.yml@main
secrets: inherit
with:
prerelease: ${{ inputs.prerelease }}
# If this is a push event, we want to skip the release if there are no semantic commits
# However, if this is a manual release (workflow_dispatch), then we want to disable skip-on-empty
# This helps recover from forgetting to add semantic commits ('fix:', 'feat:', etc.)
skip-on-empty: ${{ github.event_name == 'push' }}
docs:
needs: release
if: github.ref_name == 'main'
uses: salesforcecli/github-workflows/.github/workflows/publishTypedoc.yml@main
secrets: inherit
36 changes: 0 additions & 36 deletions .github/workflows/manualRelease.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/onPushToMain.yml

This file was deleted.

Loading