Skip to content

Commit e7c21e7

Browse files
Add v6: Fern-generated SDK, updated examples, telemetry, and CI
1 parent 771e5b4 commit e7c21e7

3,164 files changed

Lines changed: 122591 additions & 28143 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.bundle/config

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

.devcontainer/Dockerfile

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

.devcontainer/devcontainer.json

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

.env.example

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

.fernignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Specify files that shouldn't be modified by Fern
2+
changelog.md
3+
lib/auth0/client.rb
4+
lib/auth0/auth_client.rb
5+
lib/auth0/exception.rb
6+
lib/auth0/algorithm.rb
7+
lib/auth0/client_assertion.rb
8+
lib/auth0/mixins.rb
9+
lib/auth0/mixins/
10+
lib/auth0/api/
11+
lib/auth0_client.rb
12+
custom.gemspec.rb
13+
14+
# Telemetry customization
15+
lib/auth0/internal/http/raw_client.rb
16+
test/unit/authentication_endpoints_test.rb
17+
18+
.rubocop.yml
19+
20+
# Documentation
21+
README.md
22+
EXAMPLES.md
23+
DEVELOPMENT.md
24+
DEPLOYMENT.md
25+
CODE_OF_CONDUCT.md
26+
RUBYGEM.md
27+
v6_MIGRATION_GUIDE.md
28+
.github/PULL_REQUEST_TEMPLATE.md
29+
examples/

.github/workflows/codeql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
push:
1010
branches:
1111
- master
12+
- v6
1213
schedule:
1314
- cron: "37 10 * * 2"
1415

@@ -19,7 +20,7 @@ permissions:
1920

2021
concurrency:
2122
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
22-
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
23+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/v6' }}
2324

2425
jobs:
2526
analyze:

.github/workflows/release.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,22 @@ permissions:
1414
### TODO: Also remove `get-prerelease`, `get-version`, `rubygems-publish`, `release-create`, `tag-create` and `tag-exists` actions from this repo's .github/actions folder and `ruby-release` from `./github/workflows` once the repo is public.
1515

1616
jobs:
17-
rl-scanner:
18-
uses: ./.github/workflows/rl-scanner.yml
19-
with:
20-
ruby-version: 3.2
21-
secrets:
22-
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
23-
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }}
24-
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
25-
PRODSEC_TOOLS_USER: ${{ secrets.PRODSEC_TOOLS_USER }}
26-
PRODSEC_TOOLS_TOKEN: ${{ secrets.PRODSEC_TOOLS_TOKEN }}
27-
PRODSEC_TOOLS_ARN: ${{ secrets.PRODSEC_TOOLS_ARN }}
17+
# TODO: Re-enable rl-scanner once it is configured for the v6 branch.
18+
# rl-scanner:
19+
# uses: ./.github/workflows/rl-scanner.yml
20+
# with:
21+
# ruby-version: 3.2
22+
# secrets:
23+
# RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
24+
# RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }}
25+
# SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
26+
# PRODSEC_TOOLS_USER: ${{ secrets.PRODSEC_TOOLS_USER }}
27+
# PRODSEC_TOOLS_TOKEN: ${{ secrets.PRODSEC_TOOLS_TOKEN }}
28+
# PRODSEC_TOOLS_ARN: ${{ secrets.PRODSEC_TOOLS_ARN }}
2829

2930
release:
3031
uses: ./.github/workflows/ruby-release.yml
31-
needs: rl-scanner
32+
# needs: rl-scanner
3233
with:
3334
ruby-version: 3.2
3435
secrets:

.github/workflows/sca_scan.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: SCA
2+
on:
3+
push:
4+
branches: ["master", "v6"]
5+
pull_request:
6+
branches: ["master", "v6"]
7+
jobs:
8+
snyk-cli:
9+
uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main
10+
with:
11+
additional-arguments: "--exclude=README.md,.jfrog"
12+
pre-scan-commands: |
13+
gem install bundler
14+
bundle install
15+
secrets: inherit

.github/workflows/semgrep.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
push:
1010
branches:
1111
- master
12+
- v6
1213
schedule:
1314
- cron: '30 0 1,15 * *'
1415

@@ -17,7 +18,7 @@ permissions:
1718

1819
concurrency:
1920
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
20-
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
21+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/v6' }}
2122

2223
jobs:
2324
run:

.github/workflows/snyk.yml

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

0 commit comments

Comments
 (0)