Skip to content

Commit

Permalink
Update plugins (#368)
Browse files Browse the repository at this point in the history
* Update plugins

- tap-github to tag v1.6.0
- tap-stackexchange to PyPI distribution
- pre-commit hooks

* Update UV_EXCLUDE_NEWER
  • Loading branch information
edgarrmondragon authored Sep 11, 2024
1 parent b8c6732 commit e250f50
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 16 deletions.
21 changes: 12 additions & 9 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
MELTANO_CLI_LOG_CONFIG='logging/dev.yaml'
MELTANO_SEND_ANONYMOUS_USAGE_STATS='False'
MELTANO_CLI_LOG_CONFIG=logging/dev.yaml
MELTANO_SEND_ANONYMOUS_USAGE_STATS=False

MELTANO_STATE_BACKEND_URI=''
MELTANO_STATE_BACKEND_URI=

TAP_GETPOCKET_CONSUMER_KEY=''
TAP_GETPOCKET_ACCESS_TOKEN=''
TAP_GITHUB_AUTH_TOKEN=''
TAP_READTHEDOCS_TOKEN=''
TAP_GETPOCKET_ACCESS_TOKEN=
TAP_GETPOCKET_CONSUMER_KEY=

DUCKDB_PATH=''
TAP_GITHUB_AUTH_TOKEN=

TAP_READTHEDOCS_TOKEN=

DUCKDB_PATH=
MOTHERDUCK_TOKEN=

VERCEL_TOKEN=''
UV_EXCLUDE_NEWER=2024-09-10
VERCEL_TOKEN=
2 changes: 1 addition & 1 deletion .github/workflows/melty.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ env:
MELTANO_ENVIRONMENT: ${{ github.event.inputs.environment || 'prod' }}
MOTHERDUCK_TOKEN: ${{ secrets.MOTHERDUCK_TOKEN }}
EVIDENCE_SOURCE__motherduck_personal__token: ${{ secrets.MOTHERDUCK_TOKEN }}
UV_EXCLUDE_NEWER: "2024-09-02"
UV_EXCLUDE_NEWER: "2024-09-10"

jobs:
pkl:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/pre-commit/pre-commit
rev: v3.7.1
rev: v3.8.0
hooks:
- id: validate_manifest

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.0
rev: 0.29.2
hooks:
- id: check-dependabot
- id: check-github-workflows
Expand Down
4 changes: 2 additions & 2 deletions meltano.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins:
pip_url: git+https://github.com/edgarrmondragon/tap-getpocket.git python-json-logger
- name: tap-stackexchange
variant: meltanolabs
pip_url: git+https://github.com/MeltanoLabs/tap-stackexchange.git python-json-logger
pip_url: tap-stackexchange==0.0.1a5 python-json-logger
config:
tags:
- meltano
Expand All @@ -30,7 +30,7 @@ plugins:
- projects.*
- name: tap-github
variant: meltanolabs
pip_url: git+https://github.com/MeltanoLabs/tap-github.git@v1.5.0 python-json-logger
pip_url: git+https://github.com/MeltanoLabs/tap-github.git@v1.6.0 python-json-logger
config:
repositories:
- edgarrmondragon/citric
Expand Down
2 changes: 1 addition & 1 deletion pkl/plugins/extractors/tap_github.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "../../lib/meltano/plugin.pkl"
tap_github = new plugin.Extractor {
name = "tap-github"
variant = "meltanolabs"
pip_url = "git+https://github.com/MeltanoLabs/tap-github.git@v1.5.0 python-json-logger"
pip_url = "git+https://github.com/MeltanoLabs/tap-github.git@v1.6.0 python-json-logger"
config = new Mapping {
["repositories"] = List(
"edgarrmondragon/citric",
Expand Down
2 changes: 1 addition & 1 deletion pkl/plugins/extractors/tap_stackexchange.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "../../lib/meltano/plugin.pkl"
tap_stackexchange = new plugin.Extractor {
name = "tap-stackexchange"
variant = "meltanolabs"
pip_url = "git+https://github.com/MeltanoLabs/tap-stackexchange.git python-json-logger"
pip_url = "tap-stackexchange==0.0.1a5 python-json-logger"
config = new Mapping {
["tags"] = List("meltano")
}
Expand Down

0 comments on commit e250f50

Please sign in to comment.