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

Release/4.0.0 #860

Merged
merged 24 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4788def
Deprecate Stream Enrich (close #788)
benjben Apr 27, 2023
4c373e9
Deprecate enrich-rabbitmq (close #822)
benjben Oct 18, 2023
ccdc185
enrich-kafka: add blob storage support (close #831)
spenes Nov 6, 2023
daed349
enrich-kafka: support for multiple Azure blob storage account (close …
spenes Dec 20, 2023
599ddd7
Remove config logging (close #843)
spenes Dec 20, 2023
cc06fa2
Add different types of authentication for azure blob storage (close #…
pondzix Dec 27, 2023
861c5bd
Move to Snowplow Limited Use License (close #846)
AlexBenny Jan 8, 2024
f218b79
Add mandatory SLULA license acceptance flag (close #848)
spenes Jan 8, 2024
1945bdf
Add headset to the list of valid platform codes (close #851)
matus-tomlein Jan 22, 2024
c402468
Upgrade to Cats Effect 3 ecosystem (close #837)
benjben Jan 23, 2024
56e99a3
Switch from Blaze client to Ember client (close #853)
benjben Jan 17, 2024
304df4e
Make atomic field limits configurable (close #850)
pondzix Jan 19, 2024
d9dfb01
Bump mysql-connector-j to 8.3.0 (#857)
benjben Jan 24, 2024
8645baf
Bump AWS SDK to 1.12.643 (#857)
benjben Jan 24, 2024
356acaa
Bump AWS SDK v2 to 2.23.9 (#857)
benjben Jan 24, 2024
3b865f7
Bump fs2-blobstore to 0.9.12 (#857)
benjben Jan 24, 2024
4383421
Bump http4s to 0.23.25 (#857)
benjben Jan 24, 2024
a0d10c9
Bump azure-identity to 1.11.1 (#857)
benjben Jan 25, 2024
f9a9456
Bump jackson to 2.16.1 (#857)
benjben Jan 25, 2024
c4ff36e
Use SLF4J for Cats Effect starvation warning message (close #858)
benjben Jan 26, 2024
b14bbde
Remove lacework workflow (close #859)
benjben Jan 26, 2024
409405a
Scan enrich-kafka and enrich-nsq Docker images (#857)
benjben Jan 26, 2024
c48e5a9
Bump aws-msk-iam-aut to 2.0.3 (#857)
benjben Jan 26, 2024
164a68a
Prepare for 4.0.0 release
benjben Jan 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
145 changes: 0 additions & 145 deletions .github/workflows/lacework.yml

This file was deleted.

23 changes: 6 additions & 17 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,8 @@ jobs:
run: echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
- name: Assemble fat jars
run: |
sbt "project streamKinesis; set assembly / test := {}; assembly" \
"project streamKafka; set assembly / test := {}; assembly" \
"project streamNsq; set assembly / test := {}; assembly" \
"project pubsub; set assembly / test := {}; assembly" \
sbt "project pubsub; set assembly / test := {}; assembly" \
"project kinesis; set assembly / test := {}; assembly" \
"project rabbitmq; set assembly / test := {}; assembly" \
"project kafka; set assembly / test := {}; assembly" \
"project nsq; set assembly / test := {}; assembly"
- name: Create GitHub release and attach artifacts
Expand All @@ -39,12 +35,8 @@ jobs:
name: ${{ steps.ver.outputs.tag }}
tag_name: ${{ steps.ver.outputs.tag }}
files: |
modules/stream/kinesis/target/scala-2.12/snowplow-stream-enrich-kinesis-${{ steps.ver.outputs.tag }}.jar
modules/stream/kafka/target/scala-2.12/snowplow-stream-enrich-kafka-${{ steps.ver.outputs.tag }}.jar
modules/stream/nsq/target/scala-2.12/snowplow-stream-enrich-nsq-${{ steps.ver.outputs.tag }}.jar
modules/pubsub/target/scala-2.12/snowplow-enrich-pubsub-${{ steps.ver.outputs.tag }}.jar
modules/kinesis/target/scala-2.12/snowplow-enrich-kinesis-${{ steps.ver.outputs.tag }}.jar
modules/rabbitmq/target/scala-2.12/snowplow-enrich-rabbitmq-${{ steps.ver.outputs.tag }}.jar
modules/kafka/target/scala-2.12/snowplow-enrich-kafka-${{ steps.ver.outputs.tag }}.jar
modules/nsq/target/scala-2.12/snowplow-enrich-nsq-${{ steps.ver.outputs.tag }}.jar
env:
Expand All @@ -56,22 +48,19 @@ jobs:
strategy:
matrix:
app:
- streamKinesis
- streamKafka
- streamNsq
- pubsub
- kinesis
- kafka
- nsq
- rabbitmq
include:
- suffix: ""
- suffix: -experimental
app: rabbitmq
- app: kinesis
run_snyk: ${{ !contains(github.ref, 'rc') }}
- app: pubsub
run_snyk: ${{ !contains(github.ref, 'rc') }}
- app: kafka
run_snyk: ${{ !contains(github.ref, 'rc') }}
- app: nsq
run_snyk: ${{ !contains(github.ref, 'rc') }}
steps:
- uses: actions/checkout@v2
if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -103,7 +92,7 @@ jobs:
- name: Get app package name
id: packageName
run: |
export PACKAGE_NAME=$(sbt "project ${{ matrix.app }}" dockerAlias -Dsbt.log.noformat=true | sed -n '/\[info\]/ s/\[info\] //p' | tail -1 | tr -d '\n' | cut -d":" -f1)${{ matrix.suffix }}
export PACKAGE_NAME=$(sbt "project ${{ matrix.app }}" dockerAlias -Dsbt.log.noformat=true | sed -n '/\[info\]/ s/\[info\] //p' | tail -1 | tr -d '\n' | cut -d":" -f1)
echo "::set-output name=package_name::$PACKAGE_NAME"
- name: Get app base directory
id: baseDirectory
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
4.0.0 (2024-01-29)
------------------
Bump aws-msk-iam-aut to 2.0.3 (#857)
Scan enrich-kafka and enrich-nsq Docker images (#857)
Remove lacework workflow (#859)
Use SLF4J for Cats Effect starvation warning message (#858)
Bump jackson to 2.16.1 (#857)
Bump azure-identity to 1.11.1 (#857)
Bump http4s to 0.23.25 (#857)
Bump fs2-blobstore to 0.9.12 (#857)
Bump AWS SDK v2 to 2.23.9 (#857)
Bump AWS SDK to 1.12.643 (#857)
Bump mysql-connector-j to 8.3.0 (#857)
Make atomic field limits configurable (#850)
Switch from Blaze client to Ember client (#853)
Upgrade to Cats Effect 3 ecosystem (#837)
Add headset to the list of valid platform codes (#851)
Add mandatory SLULA license acceptance flag (#848)
Move to Snowplow Limited Use License (#846)
Add different types of authentication for azure blob storage (#845)
Remove config logging (#843)
enrich-kafka: support for multiple Azure blob storage account (#842)
enrich-kafka: add blob storage support (#831)
Deprecate enrich-rabbitmq (#822)
Deprecate Stream Enrich (#788)

3.9.0 (2023-11-14)
------------------
enrich-pubsub: set UserAgent header in Pubsub publisher and consumer (#826)
Expand Down
Loading
Loading