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

Update Go Modules Updates(minor) #64

Merged
merged 1 commit into from
Sep 16, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change Pending
ariga.io/atlas require minor v0.12.0 -> v0.14.0
github.com/aws/aws-sdk-go-v2/service/kms require minor v1.23.0 -> v1.24.5
github.com/getsentry/sentry-go require minor v0.22.0 -> v0.24.1
github.com/onsi/ginkgo/v2 require minor v2.11.0 -> v2.12.0
github.com/pressly/goose/v3 require minor v3.13.4 -> v3.15.0
github.com/redis/go-redis/v9 require minor v9.0.5 -> v9.1.0
go.uber.org/zap require minor v1.24.0 -> v1.25.0 v1.26.0
golang.org/x/crypto require minor v0.11.0 -> v0.13.0
golang.org/x/oauth2 require minor v0.10.0 -> v0.12.0
google.golang.org/api require minor v0.131.0 -> v0.140.0 v0.141.0
gopkg.in/DataDog/dd-trace-go.v1 require minor v1.52.0 -> v1.54.1 v1.55.0
modernc.org/sqlite require minor v1.24.0 -> v1.25.0

Release Notes

ariga/atlas (ariga.io/atlas)

v0.14.0

Compare Source

We are excited to announce the release of Atlas v0.14.0 🎊

It's been a few weeks since our last version announcement and today we're happy to share with you v0.14, which includes some very exciting improvements for Atlas. Read the announcement blog post.

What's new
  • Checkpoints - As your migration directory grows, replaying it from scratch can become annoyingly slow. Checkpoints
    allow you to save the state of your database at a specific point in time and replay migrations from that point forward.
  • Push to the Cloud - You can now push your migration directory to Atlas Cloud directly from the CLI. Think of it like docker push for your database migrations.
  • JetBrains Editor Support - After launching our VSCode Extension a few months ago, our team has been hard at work to bring the same experience to JetBrains IDEs. Starting today, you can use Atlas directly from your favorite JetBrains IDEs (IntelliJ, PyCharm, GoLand, etc.) using the new Atlas plugin.
  • Reporting Deployments - Atlas supports the reporting of migration deployments to personal workspaces in Atlas Cloud. This provides full visibility into the databases, migration runs, and their statuses for each project.

image

Quick installation

macOS + Linux:

curl -sSf https://atlasgo.sh | sh

Homebrew:

brew install ariga/tap/atlas

Docker:

docker pull arigaio/atlas
Windows

Download

Legal

The default binaries in this release are distributed released under Atlas EULA, and the community binaries are released under the Apache 2.0 license. If you would like to build Atlas from source follow the instructions here.

What's Changed

Commits

New Contributors

Full Changelog: ariga/atlas@v0.13.0...v0.14.0

v0.13.3

Compare Source

v0.13.2

Compare Source

v0.13.1

Compare Source

v0.13.0

Compare Source

We are excited to announce the release of Atlas v0.13.0 🎊

It's been just over two months since our last version announcement and today I'm super excited to share with you our latest release, v0.13, which includes some long-anticipated additions to Atlas:

  • Atlas and Atlas Community Editions - we are making a change in the way Atlas is distributed. Starting today, we are making many of the features previously available only in the commercial version of Atlas available to everyone for free. More on this below.
  • Support for SQL Views - SQL Views are virtual tables in a database created by a query and stored in the database. Starting today, you can manage views in your database using the same Atlas workflows you use for tables, indexes, foreign keys, etc.
  • Microsoft SQL Server Driver Beta - Over the last few months, we have been working on a driver for MS-SQL with some of our enterprise design partners and are happy to make it available to you as a beta.
  • Built-in schema visualization - Over the past year we released some tools to help developers visualize their database schemas using Entity Relationship Diagrams (ERDs). Starting today, you can use the atlas schema inspect --visualize command to create database ERDs directly from the command line.
  • GitHub Action for Deployments - We recently received a request from the community to add a GitHub Action to streamline applying migrations directly from GitHub workflows. We thought this was a great idea and are happy to introduce ariga/atlas-deploy-action which you can use to deploy your migrations today.
  • Type checking for schema files - As part of our continuous effort to make the experience of working with Atlas as smooth as possible, we are excited to ship a new engine for running type checks on your schema files.

Quick installation

macOS + Linux:

curl -sSf https://atlasgo.sh | sh

Homebrew:

brew install ariga/tap/atlas

Docker:

docker pull arigaio/atlas
Windows

Download

Legal

The default binaries in this release are distributed released under Atlas EULA, and the community binaries are released under the Apache 2.0 license. If you would like to build Atlas from source follow the instructions here.

What's Changed

Commits * cmd/atlas: update ariga.io/atlas by @​a8m in https://github.com/ariga/atlas/pull/1707 * chore: Use ldflag version in migrate_test.go in NoPendingFiles by @​silasdavis in https://github.com/ariga/atlas/pull/1712 * cmd/atlas: add example for 'schema diff' with dev and exclude defined in config by @​a8m in https://github.com/ariga/atlas/pull/1714 * doc: fix projects page and extend 'exclude' examples by @​a8m in https://github.com/ariga/atlas/pull/1715 * sql/migrate: support for migration planning mode by @​a8m in https://github.com/ariga/atlas/pull/1719 * merge libsql by @​a8m in https://github.com/ariga/atlas/pull/1716 * doc/website: update logos by @​dimagreat in https://github.com/ariga/atlas/pull/1720 * doc/md: turso guide by @​rotemtam in https://github.com/ariga/atlas/pull/1721 * sql/schema: add view types for (un)marshal by @​a8m in https://github.com/ariga/atlas/pull/1723 * sql/internal/specutil: marshal view spec by @​a8m in https://github.com/ariga/atlas/pull/1725 * sql/sqlspec: marshal view definition after columns by @​a8m in https://github.com/ariga/atlas/pull/1728 * sql: minor sync from ent repo by @​a8m in https://github.com/ariga/atlas/pull/1729 * ci: make go build tag aware by @​masseelch in https://github.com/ariga/atlas/pull/1730 * cmd/atlas/internal: initial support for schema loaders by @​a8m in https://github.com/ariga/atlas/pull/1733 * integration: fix run `go mod tidy` by @​giautm in https://github.com/ariga/atlas/pull/1736 * cmd/atlas: initial support for external schema data sources by @​a8m in https://github.com/ariga/atlas/pull/1737 * fix/event-update by @​dimagreat in https://github.com/ariga/atlas/pull/1739 * Spelling by @​jsoref in https://github.com/ariga/atlas/pull/1738 * doc/md: updated deployment guide with cloud by @​rotemtam in https://github.com/ariga/atlas/pull/1741 * sql/migrate: do not error on json encode unknown revision type by @​masseelch in https://github.com/ariga/atlas/pull/1746 * sql/mysql: improve foreign-keys inspection query by @​a8m in https://github.com/ariga/atlas/pull/1748 * doc: change --log to --format by @​a8m in https://github.com/ariga/atlas/pull/1751 * sql: modernize the way driver normalize schemas by @​a8m in https://github.com/ariga/atlas/pull/1753 * sql/internal/sqlx: sort schema names before printing by @​a8m in https://github.com/ariga/atlas/pull/1754 * sql/sqlx: move Charset/Collate to sqlx by @​giautm in https://github.com/ariga/atlas/pull/1755 * schemahcl: add PrecisionTypeAttr and ScaleTypeAttr by @​giautm in https://github.com/ariga/atlas/pull/1757 * sql/schema: added Scale attribute for TimeType by @​giautm in https://github.com/ariga/atlas/pull/1756 * cmd/atlas: defer HCL normalization until ReadState is called by @​a8m in https://github.com/ariga/atlas/pull/1758 * sql/sqlite: extract table options (without rowid, strict) from sql by @​noamcattan in https://github.com/ariga/atlas/pull/1745 * doc: move guide links to cards by @​a8m in https://github.com/ariga/atlas/pull/1762 * sql/sqlite: sqlspec for table options by @​noamcattan in https://github.com/ariga/atlas/pull/1763 * cmd/atlas/internal: support writing to template directories by @​a8m in https://github.com/ariga/atlas/pull/1764 * sql/postgres: support scanning prefixed sequences by @​a8m in https://github.com/ariga/atlas/pull/1768 * cmd/atlas/internal/cmdapi: add flavor to version by @​masseelch in https://github.com/ariga/atlas/pull/1770 * cmd/atlas/internal/cmdapi: flavor as build flag by @​masseelch in https://github.com/ariga/atlas/pull/1772 * sql/sqlite: migrate table options by @​noamcattan in https://github.com/ariga/atlas/pull/1769 * sql/sqlite: table options diff by @​noamcattan in https://github.com/ariga/atlas/pull/1773 * sql/postgres: add migrate change stubs by @​a8m in https://github.com/ariga/atlas/pull/1774 * sql/postgres: fix broken tests in internal repo by @​a8m in https://github.com/ariga/atlas/pull/1777 * ci: run revisions test only on schema change by @​masseelch in https://github.com/ariga/atlas/pull/1778 * web/inspect-visualize by @​dimagreat in https://github.com/ariga/atlas/pull/1779 * internal/integration: add test script for sqlite table options by @​noamcattan in https://github.com/ariga/atlas/pull/1784 * sql/postgres: handle enums as top-level objects by @​a8m in https://github.com/ariga/atlas/pull/1787 * sql/postgres: support diffing objects by @​a8m in https://github.com/ariga/atlas/pull/1789 * sql/mysql: support reordering tidb changes by their deps by @​a8m in https://github.com/ariga/atlas/pull/1792 * sql/postgres: remove views inspection from tests by @​a8m in https://github.com/ariga/atlas/pull/1793 * doc/md: updated gorm guide by @​rotemtam in https://github.com/ariga/atlas/pull/1795 * doc/website/blog: external schemas blog by @​rotemtam in https://github.com/ariga/atlas/pull/1799 * doc: initial changes to atlas schema options by @​a8m in https://github.com/ariga/atlas/pull/1800 * sql/mssql: initial package to resolve import doesn't exist by @​giautm in https://github.com/ariga/atlas/pull/1802 * cmd/atlas/internal/cmdapi: remove dead code and export log colors by @​masseelch in https://github.com/ariga/atlas/pull/1804 * ci: set ENV for test-script job by @​giautm in https://github.com/ariga/atlas/pull/1808 * cmd/atlas/internal: ensure dev-url is required in statereader by @​a8m in https://github.com/ariga/atlas/pull/1810 * doc/md: argo cd guide by @​rotemtam in https://github.com/ariga/atlas/pull/1807 * doc: add external schema to sidebar by @​a8m in https://github.com/ariga/atlas/pull/1809 * schemahcl: count nested locals as edges when traversing references by @​a8m in https://github.com/ariga/atlas/pull/1811 * schemahcl: skip evaluating non-referenced data-source by @​a8m in https://github.com/ariga/atlas/pull/1812 * internal/integration: skip inspecting views on integration tests by @​a8m in https://github.com/ariga/atlas/pull/1813 * doc/md/integrations: operator support versioned migration by @​datdao in https://github.com/ariga/atlas/pull/1749 * sql/sqlspec: marshal view dependencies by @​a8m in https://github.com/ariga/atlas/pull/1814 * doc/website/blog: announcing the atlas operator versioned flow by @​rotemtam in https://github.com/ariga/atlas/pull/1815 * sql/postgres: unmarshal views with their dependencies by @​a8m in https://github.com/ariga/atlas/pull/1816 * schemahcl: fix panic in Type method by @​ronenlu in https://github.com/ariga/atlas/pull/1817 * doc: replace mascot by @​a8m in https://github.com/ariga/atlas/pull/1818 * cmd/atlas: create context per flavor by @​masseelch in https://github.com/ariga/atlas/pull/1821 * website: replace favicon by @​a8m in https://github.com/ariga/atlas/pull/1822 * cmd/atlas: spin up a dev-database only if the target requires it by @​a8m in https://github.com/ariga/atlas/pull/1823 * cmd/atlas/internal: txmode for schema apply by @​a8m in https://github.com/ariga/atlas/pull/1824 * doc/md: cloud docs by @​rotemtam in https://github.com/ariga/atlas/pull/1826 * cmd/atlas/internal/cmdapi: allow to run cmd in test with context by @​masseelch in https://github.com/ariga/atlas/pull/1827 * sql/postgres: support schema comments by @​a8m in https://github.com/ariga/atlas/pull/1828 * doc: add links to schema pages by @​a8m in https://github.com/ariga/atlas/pull/1829 * website: getting started doc by @​a8m in https://github.com/ariga/atlas/pull/1831 * sql: remove mssql stubs until it is released by @​a8m in https://github.com/ariga/atlas/pull/1833 * sql/postgres: diff views stubs by @​a8m in https://github.com/ariga/atlas/pull/1832 * schemahcl: add helper/debug print function by @​a8m in https://github.com/ariga/atlas/pull/1834 * doc/website: update upcoming events by @​shani-a in https://github.com/ariga/atlas/pull/1835 * sql/internal/sqlx: oss stubs by @​a8m in https://github.com/ariga/atlas/pull/1836 * sql/postgres: move resource drop to the end of the planning by @​a8m in https://github.com/ariga/atlas/pull/1837 * sql/postgres: views should be created with new schemas by @​a8m in https://github.com/ariga/atlas/pull/1838 * sql/sqlite: normalize generated index names before comparing loaded schemas by @​a8m in https://github.com/ariga/atlas/pull/1839 * schemahcl: allow reference blocks in template expressions by @​a8m in https://github.com/ariga/atlas/pull/1840 * internal/integration: support running testsciprt in ent builds by @​a8m in https://github.com/ariga/atlas/pull/1844 * internal/integration: add build flags to cli tests by @​masseelch in https://github.com/ariga/atlas/pull/1845 * internal/integration: build testscript cli once by @​masseelch in https://github.com/ariga/atlas/pull/1846 * doc/md/guides: automatic migration planning for beego by @​rotemtam in https://github.com/ariga/atlas/pull/1843 * sql/mysql: implement unmarshal spec for views by @​a8m in https://github.com/ariga/atlas/pull/1847 * sql/sqlite: implement unmarshal spec for views by @​a8m in https://github.com/ariga/atlas/pull/1848 * cmd/atlas/cmdext: allow using empty schema hcl files by @​a8m in https://github.com/ariga/atlas/pull/1849 * cmd/atlas/internal/cmdapi: small comment cleanup by @​masseelch in https://github.com/ariga/atlas/pull/1850 * cmd/atlas: support for quoted identifiers in concurrent index creation by @​a8m in https://github.com/ariga/atlas/pull/1852 * cmd/atlas: create state dir if not exists by @​rotemtam in https://github.com/ariga/atlas/pull/1853 * sql/mysql: add stubs for views inspection by @​a8m in https://github.com/ariga/atlas/pull/1854 * internal/integration: exclude view inspection in community builds by @​a8m in https://github.com/ariga/atlas/pull/1855 * website: update favicon by @​a8m in https://github.com/ariga/atlas/pull/1856 * cmd/md/components: update manual installation instructions by @​masseelch in https://github.com/ariga/atlas/pull/1857 * sql/postgres: skip comparing default public schema comments by @​a8m in https://github.com/ariga/atlas/pull/1863 * sql/sqlx: add TableResource and Quote helpers by @​giautm in https://github.com/ariga/atlas/pull/1861 * sql/sqlx: quote Ident opening/closing by @​giautm in https://github.com/ariga/atlas/pull/1864 * internal/integration: add test case for migrate diff against ent/schema by @​a8m in https://github.com/ariga/atlas/pull/1866 * doc/website: remove hashitalks + update k8s event link by @​shani-a in https://github.com/ariga/atlas/pull/1865 * integration: add create command for testscript by @​giautm in https://github.com/ariga/atlas/pull/1867 * integration: use testing.T from Env to add Cleanup method by @​giautm in https://github.com/ariga/atlas/pull/1869 * sql/internal/specutil: support marshaling qualified views by @​a8m in https://github.com/ariga/atlas/pull/1871 * sql/postgres: add test case for qualified depends_on references by @​a8m in https://github.com/ariga/atlas/pull/1872 * sql/mysql: store schema name in driver by @​a8m in https://github.com/ariga/atlas/pull/1873 * sql: share the same conn between schema interfaces by @​a8m in https://github.com/ariga/atlas/pull/1875 * atlas/src: update k8s webinar date by @​shani-a in https://github.com/ariga/atlas/pull/1874 * website: k8s webinar announcement bar by @​rotemtam in https://github.com/ariga/atlas/pull/1876 * web/projects-amount-prop by @​dimagreat in https://github.com/ariga/atlas/pull/1868 * schemahcl: add tf function for simple reading files by @​a8m in https://github.com/ariga/atlas/pull/1878 * doc/website/blog: bridging the gap blogpost by @​rotemtam in https://github.com/ariga/atlas/pull/1879 * doc/guides: template directories by @​a8m in https://github.com/ariga/atlas/pull/1882 * chore: goimports -w . by @​sashamelentyev in https://github.com/ariga/atlas/pull/1880 * sql/mysql/mysqlversion: update information_schema charset/collate info by @​a8m in https://github.com/ariga/atlas/pull/1883 * doc/website: update utm tags to k8s event by @​shani-a in https://github.com/ariga/atlas/pull/1884 * sql/mysql/internal/mysqlversion: fetch collation/collate defaults from information_schema if possible by @​a8m in https://github.com/ariga/atlas/pull/1885 * sql/sqlite: add stubs for views operations by @​a8m in https://github.com/ariga/atlas/pull/1886 * sql/internal/sqlx: shared view trim function by @​a8m in https://github.com/ariga/atlas/pull/1888 * internal/migrate: fixed path on Windows by @​giautm in https://github.com/ariga/atlas/pull/1889 * sql/sqlite: delete views in snapshot by @​a8m in https://github.com/ariga/atlas/pull/1890 * sql/mysql: inspect fulltext index parsers by @​a8m in https://github.com/ariga/atlas/pull/1893 * doc/hcl: add fulltext index parser option by @​a8m in https://github.com/ariga/atlas/pull/1895 * cmd/atlas/internal/cmdapi: allow extension of schema command by @​masseelch in https://github.com/ariga/atlas/pull/1897 * sql: stubs and codec for view check options by @​a8m in https://github.com/ariga/atlas/pull/1898 * cmd/atlas: apply only revisions-table changes on automatic migration by @​a8m in https://github.com/ariga/atlas/pull/1900 * doc: add ORM to list of desired schemas by @​a8m in https://github.com/ariga/atlas/pull/1901 * cmd/atlas: export marshalSQL function by @​ronenlu in https://github.com/ariga/atlas/pull/1903 * cmd/atlas: update ariga.io/atlas by @​a8m in https://github.com/ariga/atlas/pull/1902 * cmd/atlas/internal: allow extension of migrate command by @​ronenlu in https://github.com/ariga/atlas/pull/1904 * Revert "cmd/atlas/internal: allow extension of migrate command (#​1904)" by @​ronenlu in https://github.com/ariga/atlas/pull/1905 * cmd/atlas/internal: add function to return schema cmd with flags by @​ronenlu in https://github.com/ariga/atlas/pull/1906 * cmd/atlas: deep copy flags when switching envs by @​a8m in https://github.com/ariga/atlas/pull/1907 * cmd/atlas: go work sync by @​masseelch in https://github.com/ariga/atlas/pull/1908 * atlas/cmdapi: decouple EntRevision from cmdapi by @​giautm in https://github.com/ariga/atlas/pull/1911 * schema: support UnderlyingExpr expr by @​giautm in https://github.com/ariga/atlas/pull/1910 * schemahcl: merge options and constructor files by @​a8m in https://github.com/ariga/atlas/pull/1912 * cmdapi: use migrate.ErrRevisionNotExist to check empty version by @​giautm in https://github.com/ariga/atlas/pull/1913 * migrate: use RRW from the driver if it supports by @​giautm in https://github.com/ariga/atlas/pull/1915 * cmd/atlas/internal: export marshalSQL function for schema diff by @​ronenlu in https://github.com/ariga/atlas/pull/1916 * cmd/atlas/internal: add current and desire realms to SchemaDiff data by @​ronenlu in https://github.com/ariga/atlas/pull/1917 * doc/md/integrations: update k8s operator docs by @​rotemtam in https://github.com/ariga/atlas/pull/1918 * docs/md: updating github actions page by @​rotemtam in https://github.com/ariga/atlas/pull/1919 * doc/md: update golang migrate guide by @​rotemtam in https://github.com/ariga/atlas/pull/1921 * schemahcl: add basic schema validator option by @​a8m in https://github.com/ariga/atlas/pull/1923 * schemahcl: validate body in schema validator by @​a8m in https://github.com/ariga/atlas/pull/1925 * doc/md/cloud: update the images for creating-bots doc by @​solomonme in https://github.com/ariga/atlas/pull/1926 * sql/mysql: minor changes to allow extending spec options by @​a8m in https://github.com/ariga/atlas/pull/1927 * internal/integration: set homedir to workdir for script tests by @​noamcattan in https://github.com/ariga/atlas/pull/1928 * sql: allow extending sqlite and postgres schema by @​a8m in https://github.com/ariga/atlas/pull/1929 * internal/integration: set homedir from env for script tests by @​noamcattan in https://github.com/ariga/atlas/pull/1930 * cmd/atlas: fix migrate test by @​noamcattan in https://github.com/ariga/atlas/pull/1931 * cmd/atlas: fix migrate test by @​noamcattan in https://github.com/ariga/atlas/pull/1932 * doc/website: remove k8s webinar from upcoming event - Atlas website by @​shani-a in https://github.com/ariga/atlas/pull/1933 * cmd/atlas: replace promptui to one without datarace by @​a8m in https://github.com/ariga/atlas/pull/1934 * doc/md: small typo in projects docs by @​caioariede in https://github.com/ariga/atlas/pull/1936 * cmd/atlas: do not pass error to inspect template by @​a8m in https://github.com/ariga/atlas/pull/1938 * doc/website/blog: release v0.13.0 by @​rotemtam in https://github.com/ariga/atlas/pull/1941 * doc/md: update from template by @​rotemtam in https://github.com/ariga/atlas/pull/1943 * sql/postgres: support the NULLS [NOT] DISTINCT index attribute by @​a8m in https://github.com/ariga/atlas/pull/1942 * Remove executable bits in `os.WriteFile` by @​ramikg in https://github.com/ariga/atlas/pull/1944 * cmd/atlas/internal: export cloud header setter by @​a8m in https://github.com/ariga/atlas/pull/1946 * doc: update opt-in to beta drivers by @​a8m in https://github.com/ariga/atlas/pull/1948 * doc/md: update community install guide by @​giautm in https://github.com/ariga/atlas/pull/1947 * doc/md: add custom dev url to k8s doc by @​rotemtam in https://github.com/ariga/atlas/pull/1949 * cmd/atlas: update ariga.io/atlas by @​a8m in https://github.com/ariga/atlas/pull/1950 * doc: add view to hcl schema by @​a8m in https://github.com/ariga/atlas/pull/1935

New Contributors

Full Changelog: ariga/atlas@v0.12.0...v0.13.0

v0.12.1

Compare Source

getsentry/sentry-go (github.com/getsentry/sentry-go)

v0.24.1: 0.24.1

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.24.1.

Bug fixes
  • Prevent a panic in sentryotel.flushSpanProcessor() ((#​711))
  • Prevent a panic when setting the SDK identifier (#​715)

v0.24.0: 0.24.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.24.0.

Deprecations
  • sentry.Version to be removed in 0.25.0. Use sentry.SDKVersion instead.
  • sentry.SDKIdentifier to be removed in 0.25.0. Use Client.GetSDKIdentifier() instead.
  • dsn.RequestHeaders() to be removed after 0.25.0, but no earlier than December 1, 2023. Requests to the /envelope endpoint are authenticated using the DSN in the envelope header.
Features
  • Run a single instance of the profiler instead of multiple ones for each Go routine (#​655)
  • Use the route path as the transaction names when using the Gin integration (#​675)
  • Set the SDK name accordingly when a framework integration is used (#​694)
  • Read release information (VCS revision) from debug.ReadBuildInfo (#​704)
Bug fixes
  • [otel] Fix incorrect usage of attributes.Value.AsString (#​684)
  • Fix trace function name parsing in profiler on go1.21+ (#​695)
Misc

v0.23.0: 0.23.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.23.0.

Features
  • Initial support for Cron Monitoring (#​661)

    This is how the basic usage of the feature looks like:

    // 🟡 Notify Sentry your job is running:
    checkinId := sentry.CaptureCheckIn(
      &sentry.CheckIn{
        MonitorSlug: "<monitor-slug>",
        Status:      sentry.CheckInStatusInProgress,
      },
      nil,
    )
    
    // Execute your scheduled task here...
    
    // 🟢 Notify Sentry your job has completed successfully:
    sentry.CaptureCheckIn(
      &sentry.CheckIn{
        ID:          *checkinId,
        MonitorSlug: "<monitor-slug>",
        Status:      sentry.CheckInStatusOK,
      },
      nil,
    )

    A full example of using Crons Monitoring is available here.

    More documentation on configuring and using Crons can be found here.

  • Add support for Event Attachments (#​670)

    It's now possible to add file/binary payloads to Sentry events:

    sentry.ConfigureScope(func(scope *sentry.Scope) {
      scope.AddAttachment(&Attachment{
        Filename:    "report.html",
        ContentType: "text/html",
        Payload:     []byte("<h1>Look, HTML</h1>"),
      })
    })

    The attachment will then be accessible on the Issue Details page.

  • Add sampling decision to trace envelope header (#​666)

  • Expose SpanFromContext function (#​672)

Bug fixes
  • Make Span.Finish a no-op when the span is already finished (#​660)
onsi/ginkgo (github.com/onsi/ginkgo/v2)

v2.12.0

Compare Source

2.12.0

Features
  • feat: allow MustPassRepeatedly decorator to be set at suite level (#​1266) [05de518]
Fixes
Maintenance

Various chores/dependency bumps.

pressly/goose (github.com/pressly/goose/v3)

v3.15.0

Compare Source

  • Fix sqlparser to avoid skipping the last statement when it's not terminated with a semicolon
    within a StatementBegin/End block. (#​580)
  • Add go1.21 to the CI matrix.
  • Bump minimum version of module in go.mod to go1.19.
  • Fix version output when installing pre-built binaries (#​585).

v3.14.0

Compare Source

  • Filter registered Go migrations from the global map with corresponding .go files from the
    filesystem.
    • The code previously assumed all .go migrations would be in the same folder, so this should not
      be a breaking change.
    • See #​553 for more details
  • Improve output log message for applied up migrations. #​562
  • Fix an issue where AddMigrationNoTxContext was registering the wrong source because it skipped
    too many frames. #​572
  • Improve binary version output when using go install.
redis/go-redis (github.com/redis/go-redis/v9)

v9.1.0: 9.1.0

Compare Source

What's new?

Triggers and Functions support

Triggers and Functions allow you to execute server-side functions triggered when key values are modified or created in Redis, a stream entry arrival, or explicitly calling them. Simply put, you can replace Lua scripts with easy-to-develop JavaScript or TypeScript code. Move your business logic closer to the data to ensure a lower latency, and forget about updating dependent key values manually in your code.
Try it for yourself with Quick start

Support for All Probabilistic data structures

Probabilistic data structures, like Bloom filters, offer unique advantages when dealing with large datasets, such as memory efficiency, faster operations, and scalability. Go-Redis now supports all probabilistic data structures.

🐛 Bug Fixes

🧰 Maintenance

  • Bump github.com/bsm/ginkgo/v2 from 2.7.0 to 2.9.5 (#​2613)
  • Adds testable examples to be automatically pulled in redis.io docs (#​2601)
  • Integrating spellcheck into CI (#​2666)
  • Bumping redis versions (#​2662)
  • Updating the README with connection options (#​2661)
  • chore: fix staticcheck (#​2631)

Contributors

We'd like to thank all the contributors who worked on this release!

@​chayim, @​dependabot, @​dependabot[bot], @​elena-kolevska, @​kamyab98, @​ofekshenawa, @​testwill and @​vmihailenco

uber-go/zap (go.uber.org/zap)

v1.25.0

Compare Source

This release contains several improvements including performance, API additions,
and two new experimental packages whose APIs are unstable and may change in the
future.

Enhancements:

  • #​1246: Add zap/exp/zapslog package for integration with slog.
  • #​1273: Add Name to Logger which returns the Logger's name if one is set.
  • #​1281: Add zap/exp/expfield package which contains helper methods
    Str and Strs for constructing String-like zap.Fields.
  • #​1310: Reduce stack size on Any.

Thanks to @​knight42, @​dzakaammar, @​bcspragu, and @​rexywork for their contributions
to this release.

googleapis/google-api-go-client (google.golang.org/api)

v0.140.0

Compare Source

Features

v0.139.0

Compare Source

Features
Documentation

v0.138.0

Compare Source

Features

v0.137.0

Compare Source

Features

v0.136.0

Compare Source

Features

v0.135.0

Compare Source

Features

v0.134.0

Compare Source

Features

v0.133.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from nonchan7720 as a code owner July 16, 2023 22:21
@renovate renovate bot changed the title Update module github.com/aws/aws-sdk-go-v2 to v1.19.0 Update Go Modules Updates(minor) Jul 21, 2023
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch 2 times, most recently from 56b9687 to 53fcfac Compare July 27, 2023 17:12
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch 8 times, most recently from b01b333 to d3ee855 Compare August 5, 2023 07:33
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch 9 times, most recently from 601f266 to 0e97a2b Compare August 13, 2023 10:36
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch 5 times, most recently from 732de13 to 5550ed4 Compare August 21, 2023 18:23
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch from 5550ed4 to 3ac9b2b Compare August 24, 2023 20:20
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch 3 times, most recently from 1f98a91 to 388e365 Compare August 30, 2023 21:50
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch 3 times, most recently from 1f6eada to 4030969 Compare September 8, 2023 17:40
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch 4 times, most recently from 01bf240 to f19afe3 Compare September 16, 2023 13:10
@renovate renovate bot force-pushed the renovate/go-modules-updates(minor) branch from f19afe3 to c190717 Compare September 16, 2023 14:34
@nonchan7720 nonchan7720 merged commit 2b11483 into main Sep 16, 2023
1 check passed
@nonchan7720 nonchan7720 deleted the renovate/go-modules-updates(minor) branch September 16, 2023 16:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant